• Home
  • Raw
  • Download

Lines Matching refs:Sel

68 ObjCContainerDecl::getMethod(Selector Sel, bool isInstance,  in getMethod()  argument
86 lookup_const_result R = lookup(Sel); in getMethod()
103 Selector Sel = Property->getSetterName(); in HasUserDeclaredSetterMethod() local
104 lookup_const_result R = lookup(Sel); in HasUserDeclaredSetterMethod()
116 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
431 bool ObjCInterfaceDecl::isDesignatedInitializer(Selector Sel, in isDesignatedInitializer() argument
443 if (const ObjCMethodDecl *MD = IFace->getInstanceMethod(Sel)) { in isDesignatedInitializer()
451 if (const ObjCMethodDecl *MD = Ext->getInstanceMethod(Sel)) { in isDesignatedInitializer()
544 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
561 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
566 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()
571 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
581 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
600 const Selector &Sel, in lookupPrivateMethod() argument
611 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
612 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
616 Method = Instance ? getCategoryInstanceMethod(Sel) in lookupPrivateMethod()
617 : getCategoryClassMethod(Sel); in lookupPrivateMethod()
623 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
627 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
631 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
1083 Selector Sel = getSelector(); in findPropertyDecl() local
1084 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1103 if (NextSel == Sel) in findPropertyDecl()
1330 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1333 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1340 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1343 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1536 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
1546 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
1550 if ((MethodDecl = I->lookupMethod(Sel, isInstance))) in lookupMethod()