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()
512 bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, in isDesignatedInitializer() argument
524 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { in isDesignatedInitializer()
532 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { in isDesignatedInitializer()
625 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
643 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
648 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
654 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
665 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
684 const Selector &Sel, in lookupPrivateMethod() argument
695 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
696 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
700 Method = getCategoryMethod(Sel, Instance); in lookupPrivateMethod()
706 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
710 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
714 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
1200 Selector Sel = getSelector(); in findPropertyDecl() local
1201 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1220 if (NextSel == Sel) in findPropertyDecl()
1575 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1578 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1585 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1588 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1786 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
1796 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
1800 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()