Lines Matching refs:getSelector
417 << 0 << MDecl->getSelector(); in ActOnStartOfObjCMethodDef()
439 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
490 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
1758 MethodMap[MD->getSelector()] = MD; in DiagnoseClassExtensionDupMethods()
1763 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods()
2652 MethodDecl->getSelector() == GetNullarySelector("load", Context)); in WarnExactTypedMethods()
2740 Selector fISelector = S.Context.Selectors.getSelector(1, &II); in CheckProtocolMethodDefs()
2762 !InsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2763 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2778 IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2793 !ClsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2794 (!Super || !Super->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2800 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2833 if (!InsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2836 !InsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2843 IMPDecl->getInstanceMethod(I->getSelector()); in MatchAllMethodDeclarations()
2844 assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2863 if (!ClsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2866 !ClsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2872 IMPDecl->getClassMethod(I->getSelector()); in MatchAllMethodDeclarations()
2873 assert(CDecl->getClassMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2947 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2957 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2980 InsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3011 ClsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3432 ReadMethodPool(Method->getSelector()); in AddMethodToGlobalPool()
3434 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3437 .insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3460 Selector sel = chosen->getSelector(); in isAcceptableMethodMismatch()
3670 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection()
3724 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3725 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3729 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3736 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3737 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3741 HelperIsMethodInObjCType(*this, M->getMethod()->getSelector(), in SelectorsForTypoCorrection()
3943 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4014 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; in ActOnAtEnd()
4032 InsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4038 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; in ActOnAtEnd()
4056 ClsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4279 Selector selector = method->getSelector(); in OverrideSearch()
4395 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
4459 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides()
4664 auto Sel = Method->getSelector(); in checkObjCDirectMethodClashes()
4847 if (Setter->getSelector() == Sel && in ActOnMethodDeclaration()
4853 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4879 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4936 ObjCMethod->getSelector().getMethodFamily() == OMF_dealloc) { in ActOnMethodDeclaration()
4950 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
5053 ObjCMethod->getSelector().getAsString() == "load") { in ActOnMethodDeclaration()
5273 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true, in GetIvarBackingPropertyAccessor()