reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
2186 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;
2189 return lookupMethod(Sel, true/*isInstance*/); 2193 return lookupMethod(Sel, false/*isInstance*/);tools/clang/lib/AST/DeclObjC.cpp
711 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) 721 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) 1904 if ((MethodDecl = I->lookupMethod(Sel, isInstance)))tools/clang/lib/Sema/SemaDeclObjC.cpp
4689 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(),
tools/clang/lib/Sema/SemaExprObjC.cpp1793 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) 1807 if ((MD = PROTO->lookupMethod(Sel, Instance))) {