Lines Matching refs:Sel
68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance, in getMethod() argument
86 lookup_result R = lookup(Sel); in getMethod()
103 Selector Sel = Property->getSetterName(); in HasUserDeclaredSetterMethod() local
104 lookup_result R = lookup(Sel); in HasUserDeclaredSetterMethod()
116 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
540 bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, in isDesignatedInitializer() argument
552 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { in isDesignatedInitializer()
560 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { in isDesignatedInitializer()
653 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
671 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
676 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
682 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
693 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
712 const Selector &Sel, in lookupPrivateMethod() argument
723 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
724 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
728 Method = getCategoryMethod(Sel, Instance); in lookupPrivateMethod()
734 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
738 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
742 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
1232 Selector Sel = getSelector(); in findPropertyDecl() local
1233 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1250 if (NextSel == Sel) in findPropertyDecl()
1257 if (NextSel == Sel) in findPropertyDecl()
1609 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1612 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1619 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1622 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1820 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
1830 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
1834 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()