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

Declarations

tools/clang/include/clang/AST/DeclObjC.h
 1840   ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance,

References

tools/clang/include/clang/AST/DeclObjC.h
 1847     return lookupMethod(Sel, true/*isInstance*/);
 1852     return lookupMethod(Sel, false/*isInstance*/);
 1871     return lookupMethod(Sel, !IsClassProperty/*isInstance*/,
tools/clang/lib/Sema/SemaDeclObjC.cpp
  438       IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod());
  489           SuperClass->lookupMethod(MDecl->getSelector(),
 2745           (!Super || !Super->lookupMethod(method->getSelector(),
 2760                   IDecl->lookupMethod(method->getSelector(),
 2777         (!Super || !Super->lookupMethod(method->getSelector(),
 2783       if (C && IDecl->lookupMethod(method->getSelector(),
 2928     if (SuperIDecl && SuperIDecl->lookupMethod(Sel, true))
 2935     if (SuperIDecl && SuperIDecl->lookupMethod(Sel, false))
 4672       if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(),
 4996   Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true,
tools/clang/lib/Sema/SemaExprObjC.cpp
 1782     if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance))
 4070     ClassMethod = RelatedClass->lookupMethod(Sel, false);
 4084     InstanceMethod = RelatedClass->lookupMethod(Sel, true);
tools/clang/lib/Sema/SemaObjCProperty.cpp
 1786   ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(),
tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
 1128     D = IDecl->lookupMethod(Sel, true);