Lines Matching refs:getSelector

425         << 0 << MDecl->getSelector();  in ActOnStartOfObjCMethodDef()
447 IC->lookupMethod(MDecl->getSelector(), MDecl->isInstanceMethod()); in ActOnStartOfObjCMethodDef()
498 SuperClass->lookupMethod(MDecl->getSelector(), in ActOnStartOfObjCMethodDef()
1769 MethodMap[MD->getSelector()] = MD; in DiagnoseClassExtensionDupMethods()
1774 const ObjCMethodDecl *&PrevMethod = MethodMap[Method->getSelector()]; in DiagnoseClassExtensionDupMethods()
2667 MethodDecl->getSelector() == GetNullarySelector("load", Context)); in WarnExactTypedMethods()
2755 Selector fISelector = S.Context.Selectors.getSelector(1, &II); in CheckProtocolMethodDefs()
2778 !InsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2780 method->getSelector(), true /* instance */, in CheckProtocolMethodDefs()
2793 method->getSelector(), true /* instance */, in CheckProtocolMethodDefs()
2807 !ClsMap.count(method->getSelector()) && in CheckProtocolMethodDefs()
2809 method->getSelector(), false /* class method */, in CheckProtocolMethodDefs()
2813 if (C && IDecl->lookupMethod(method->getSelector(), in CheckProtocolMethodDefs()
2842 if (!InsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2845 !InsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2852 IMPDecl->getInstanceMethod(I->getSelector()); in MatchAllMethodDeclarations()
2853 assert(CDecl->getInstanceMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2872 if (!ClsMapSeen.insert(I->getSelector()).second) in MatchAllMethodDeclarations()
2875 !ClsMap.count(I->getSelector())) { in MatchAllMethodDeclarations()
2881 IMPDecl->getClassMethod(I->getSelector()); in MatchAllMethodDeclarations()
2882 assert(CDecl->getClassMethod(I->getSelector(), true/*AllowHidden*/) && in MatchAllMethodDeclarations()
2956 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2966 Selector Sel = I->getSelector(); in CheckCategoryVsClassMethodMatches()
2989 InsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3020 ClsMap.insert(I->getSelector()); in ImplMethodsVsClassMethods()
3442 ReadMethodPool(Method->getSelector()); in AddMethodToGlobalPool()
3444 GlobalMethodPool::iterator Pos = MethodPool.find(Method->getSelector()); in AddMethodToGlobalPool()
3447 .insert(std::make_pair(Method->getSelector(), in AddMethodToGlobalPool()
3470 Selector sel = chosen->getSelector(); in isAcceptableMethodMismatch()
3680 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection()
3734 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3735 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3740 SemaRef, M->getMethod()->getSelector(), ObjectType)) in SelectorsForTypoCorrection()
3746 (M->getMethod()->getSelector().getNumArgs() == NumArgs) && in SelectorsForTypoCorrection()
3747 (M->getMethod()->getSelector() != Sel)) { in SelectorsForTypoCorrection()
3752 SemaRef, M->getMethod()->getSelector(), ObjectType)) in SelectorsForTypoCorrection()
3953 IDecl->getMethod(MD->getSelector(), MD->isInstanceMethod())) { in DiagnoseCategoryDirectMembersProtocolConformance()
4026 const ObjCMethodDecl *&PrevMethod = InsMap[Method->getSelector()]; in ActOnAtEnd()
4044 InsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4050 const ObjCMethodDecl *&PrevMethod = ClsMap[Method->getSelector()]; in ActOnAtEnd()
4068 ClsMap[Method->getSelector()] = Method; in ActOnAtEnd()
4292 Selector selector = method->getSelector(); in OverrideSearch()
4409 ObjCMethodDecl *meth = container->getMethod(Method->getSelector(), in search()
4478 MethodPool.find(ObjCMethod->getSelector()); in CheckObjCMethodOverrides()
4683 auto Sel = Method->getSelector(); in checkObjCDirectMethodClashes()
4872 if (Setter->getSelector() == Sel && in ActOnMethodDeclaration()
4878 if (Getter->getSelector() == Sel && in ActOnMethodDeclaration()
4904 if (auto *IMD = IDecl->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
4961 ObjCMethod->getSelector().getMethodFamily() == OMF_dealloc) { in ActOnMethodDeclaration()
4975 if (auto *IMD = P->lookupMethod(ObjCMethod->getSelector(), in ActOnMethodDeclaration()
5078 ObjCMethod->getSelector().getAsString() == "load") { in ActOnMethodDeclaration()
5303 Method = IDecl->lookupMethod(Method->getSelector(), /*isInstance=*/true, in GetIvarBackingPropertyAccessor()