HomeSort by: relevance | last modified time | path
    Searched refs:lookupPrivateMethod (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CallGraph.cpp 121 D = IDecl->lookupPrivateMethod(Sel);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExprObjC.cpp 1283 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/true))
1287 if (ObjCMethodDecl *MD = IFace->lookupPrivateMethod(Sel, /*isInstance=*/false))
1946 if (ObjCMethodDecl *method = iface->lookupPrivateMethod(sel, isInstance))
2046 Getter = IFace->lookupPrivateMethod(Sel);
2067 Setter = IFace->lookupPrivateMethod(SetterSel);
2514 OPT->getInterfaceDecl()->lookupPrivateMethod(SE->getSelector());
3086 Method = ClassDecl->lookupPrivateMethod(Sel);
SemaExprMember.cpp 1556 Getter = IFace->lookupPrivateMethod(Sel, false);
1567 Setter = IFace->lookupPrivateMethod(SetterSel, false);
SemaStmt.cpp 2222 if (!method) method = iface->lookupPrivateMethod(selector);
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 741 ObjCMethodDecl *ObjCInterfaceDecl::lookupPrivateMethod(
768 Method = lookupPrivateMethod(Sel, true);
772 return getSuperClass()->lookupPrivateMethod(Sel, Instance);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 1835 ObjCMethodDecl *lookupPrivateMethod(const Selector &Sel,
1839 return lookupPrivateMethod(Sel, false);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 1204 // Repeatedly calling lookupPrivateMethod() is expensive, especially
1225 // Query lookupPrivateMethod() if the cache does not hit.
1227 Val = Interface->lookupPrivateMethod(LookupSelector, InstanceMethod);

Completed in 132 milliseconds