reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Definitions

tools/clang/include/clang/AST/DeclBase.h
 2123   template<typename SpecificDecl, bool (SpecificDecl::*Acceptable)() const>
tools/clang/include/clang/AST/DeclObjC.h
  138 class ObjCMethodDecl : public NamedDecl, public DeclContext {
  421   bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; }
  429   bool isClassMethod() const { return !isInstanceMethod(); }
  728 class ObjCPropertyDecl : public NamedDecl {
  877   bool isInstanceProperty() const { return !isClassProperty(); }
  878   bool isClassProperty() const { return PropertyAttributes & OBJC_PR_class; }