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

Declarations

tools/clang/include/clang/AST/DeclObjC.h
 2186   ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const;

References

tools/clang/include/clang/AST/DeclObjC.h
 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.cpp
 1793     if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance))
 1807     if ((MD = PROTO->lookupMethod(Sel, Instance))) {