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

References

tools/clang/lib/ARCMigrate/ObjCMT.cpp
 1188   ObjCMethodDecl *SetterMethod = D->getInstanceMethod(SetterSelector);
 1211         SetterMethod = D->getInstanceMethod(SetterSelector);
tools/clang/lib/AST/DeclObjC.cpp
  138       if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel))
  581   if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) {
  589     if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) {
  751     Method = Instance ? ImpDecl->getInstanceMethod(Sel)
 1682       if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel))
tools/clang/lib/Analysis/RetainSummaryManager.cpp
 1143     Method = ReceiverClass->getInstanceMethod(S);
tools/clang/lib/CodeGen/CodeGenModule.cpp
 5114       if (!D->getInstanceMethod(PD->getGetterName()))
 5118           !D->getInstanceMethod(PD->getSetterName()))
tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
  911   return getter ? !IMP->getInstanceMethod(PD->getGetterName())
  912                 : !IMP->getInstanceMethod(PD->getSetterName());
tools/clang/lib/Sema/SemaDeclObjC.cpp
 2826         IMPDecl->getInstanceMethod(I->getSelector());
 2827       assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) &&
 4005                   = Ext->getInstanceMethod(Property->getGetterName()))
 4009                     = Ext->getInstanceMethod(Property->getSetterName()))
 4662       PrevMethod = ImpDecl->getInstanceMethod(Sel);
tools/clang/lib/Sema/SemaExprMember.cpp
  438   if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
  463     if (ObjCMethodDecl *OMD = I->getInstanceMethod(Sel)) {
tools/clang/lib/Sema/SemaObjCProperty.cpp
 1819     if (!SuperClassImplementsGetter && SDecl->getInstanceMethod(Prop->getGetterName()))
 1822     if (!SuperClassImplementsSetter && SDecl->getInstanceMethod(Prop->getSetterName()))
 1855     if (IMPDecl->getInstanceMethod(Prop->getGetterName())) {
 1858       if (IMPDecl->getInstanceMethod(Prop->getSetterName()))
 1895           !IMPDecl->getInstanceMethod(Prop->getSetterName()) &&
 2097       if (!impDecl->getInstanceMethod(setterMethod->getSelector()) &&
 2098           !impDecl->getInstanceMethod(getterMethod->getSelector())) {
 2137                      IMPDecl->getInstanceMethod(Property->getGetterName());
 2140                      IMPDecl->getInstanceMethod(Property->getSetterName());
 2167                        IMPDecl->getInstanceMethod(Property->getGetterName());
 2170                        IMPDecl->getInstanceMethod(Property->getSetterName());
 2214         !D->getInstanceMethod(PD->getGetterName())) {
 2285       if (auto *IMD = IFD->getInstanceMethod(MD->getSelector())) {
 2290           if (auto *IMD = Ext->getInstanceMethod(MD->getSelector())) {
 2331     CD->getInstanceMethod(property->getGetterName());
 2341                          getInstanceMethod(property->getGetterName());
 2345                  CD->getInstanceMethod(property->getSetterName());
 2352                           getInstanceMethod(property->getSetterName());
tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
  188           InterfD->getInstanceMethod(PD->getGetterName());
  190           InterfD->getInstanceMethod(PD->getSetterName());