Searched refs:lookupMethod (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 1819 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance, 1826 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod() 1831 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod() 1850 return lookupMethod(Sel, !IsClassProperty/*isInstance*/, in lookupPropertyAccessor() 2183 ObjCMethodDecl *lookupMethod(Selector Sel, bool isInstance) const; 2186 return lookupMethod(Sel, true/*isInstance*/); in lookupInstanceMethod() 2190 return lookupMethod(Sel, false/*isInstance*/); in lookupClassMethod()
|
| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 692 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCInterfaceDecl 721 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod() 731 if ((MethodDecl = Protocol->lookupMethod(Sel, isInstance))) in lookupMethod() 1968 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() function in ObjCProtocolDecl 1982 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaDeclObjC.cpp | 439 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef() 490 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef() 2763 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs() 2778 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs() 2794 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs() 2800 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs() 2951 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, true)) in CheckCategoryVsClassMethodMatches() 2958 if (SuperIDecl && SuperIDecl->lookupMethod(Sel, false)) in CheckCategoryVsClassMethodMatches() 4879 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration() 4950 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration() [all …]
|
| H A D | SemaExprObjC.cpp | 1281 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/true)) in findMethodInCurrentClass() 1285 if (ObjCMethodDecl *MD = IFace->lookupMethod(Sel, /*isInstance=*/false)) in findMethodInCurrentClass() 1941 if (ObjCMethodDecl *method = iface->lookupMethod(sel, isInstance)) in LookupMethodInObjectType() 1952 if (ObjCMethodDecl *method = I->lookupMethod(sel, isInstance)) in LookupMethodInObjectType() 1966 if ((MD = PROTO->lookupMethod(Sel, Instance))) { in LookupMethodInQualifiedType() 4271 ClassMethod = RelatedClass->lookupMethod(Sel, false); in checkObjCBridgeRelatedComponents() 4285 InstanceMethod = RelatedClass->lookupMethod(Sel, true); in checkObjCBridgeRelatedComponents()
|
| H A D | SemaObjCProperty.cpp | 1841 ObjCMethodDecl *IMD = IFace->lookupMethod(Method->getSelector(), in IvarBacksCurrentMethodAccessor() 2416 auto *ExistingGetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl() 2432 auto *ExistingSetter = CatDecl->getClassInterface()->lookupMethod( in ProcessPropertyDecl()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Core/ |
| H A D | CallEvent.cpp | 1092 D = IDecl->lookupMethod(Sel, true); in canBeOverridenInSubclass() 1200 Val = Interface->lookupMethod(LookupSelector, InstanceMethod); in lookupRuntimeDefinition()
|