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

References

tools/clang/include/clang/AST/DeclObjC.h
  180     return static_cast<SelectorLocationsKind>(ObjCMethodDeclBits.SelLocsKind);
  184     ObjCMethodDeclBits.SelLocsKind = Kind;
  247     return static_cast<ObjCDeclQualifier>(ObjCMethodDeclBits.objcDeclQualifier);
  251     ObjCMethodDeclBits.objcDeclQualifier = QV;
  257     return ObjCMethodDeclBits.RelatedResultType;
  262     ObjCMethodDeclBits.RelatedResultType = RRT;
  266   bool isRedeclaration() const { return ObjCMethodDeclBits.IsRedeclaration; }
  267   void setIsRedeclaration(bool RD) { ObjCMethodDeclBits.IsRedeclaration = RD; }
  271   bool hasRedeclaration() const { return ObjCMethodDeclBits.HasRedeclaration; }
  273     ObjCMethodDeclBits.HasRedeclaration = HRD;
  421   bool isInstanceMethod() const { return ObjCMethodDeclBits.IsInstance; }
  423     ObjCMethodDeclBits.IsInstance = isInst;
  426   bool isVariadic() const { return ObjCMethodDeclBits.IsVariadic; }
  427   void setVariadic(bool isVar) { ObjCMethodDeclBits.IsVariadic = isVar; }
  432     return ObjCMethodDeclBits.IsPropertyAccessor;
  436     ObjCMethodDeclBits.IsPropertyAccessor = isAccessor;
  439   bool isDefined() const { return ObjCMethodDeclBits.IsDefined; }
  440   void setDefined(bool isDefined) { ObjCMethodDeclBits.IsDefined = isDefined; }
  449   bool isOverriding() const { return ObjCMethodDeclBits.IsOverriding; }
  450   void setOverriding(bool IsOver) { ObjCMethodDeclBits.IsOverriding = IsOver; }
  464   bool hasSkippedBody() const { return ObjCMethodDeclBits.HasSkippedBody; }
  466     ObjCMethodDeclBits.HasSkippedBody = Skipped;
  478     ObjCMethodDeclBits.DeclImplementation = ic;
  482     return ImplementationControl(ObjCMethodDeclBits.DeclImplementation);
tools/clang/lib/AST/DeclObjC.cpp
  791   ObjCMethodDeclBits.Family =
  986   auto family = static_cast<ObjCMethodFamily>(ObjCMethodDeclBits.Family);
 1002     ObjCMethodDeclBits.Family = family;
 1073   ObjCMethodDeclBits.Family = family;