Searched refs:lookupMethod (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 1838 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance, 1845 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod() 1850 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod() 1869 return lookupMethod(Sel, !IsClassProperty/*isInstance*/, in lookupPropertyAccessor() 2224 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const; 2227 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod() 2231 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 696 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCInterfaceDecl 725 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod() 735 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) in lookupMethod() 1994 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCProtocolDecl 2008 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 446 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 497 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef() 2787 (!Super || !Super->lookupMethod( in CheckProtocolMethodDefs() 2800 if (ObjCMethodDecl *MethodInClass = IDecl->lookupMethod( in CheckProtocolMethodDefs() 2816 (!Super || !Super->lookupMethod( in CheckProtocolMethodDefs() 2821 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs() 2968 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, true)) in CheckCategoryVsClassMethodMatches() 2975 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, false)) in CheckCategoryVsClassMethodMatches() 4908 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration() 4979 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration() [all …]
|
| H A D | SemaExprObjC.cpp | 1284 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/true)) in findMethodInCurrentClass() 1288 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/false)) in findMethodInCurrentClass() 1944 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) in LookupMethodInObjectType() 1955 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) in LookupMethodInObjectType() 1967 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType() 4266 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents() 4280 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
|
| H A D | SemaObjCProperty.cpp | 1830 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor() 2404 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl() 2420 auto *ExistingSetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1176 D = IDecl->lookupMethod(Sel, true); in canBeOverridenInSubclass() 1284 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Testing/Demangle/ |
| H A D | DemangleTestCases.inc | 9970 …terfaceDecl12lookupMethodENS_8SelectorEb", "clang::ObjCInterfaceDecl::lookupMethod(clang::Selector… 9971 …ProtocolDecl12lookupMethodENS_8SelectorEb", "clang::ObjCProtocolDecl::lookupMethod(clang::Selector…
|