• 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()
120 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel)) in HasUserDeclaredSetterMethod()
459 ObjCMethodDecl *ObjCInterfaceDecl::lookupMethod(Selector Sel, in lookupMethod() argument
474 if ((MethodDecl = ClassDecl->getMethod(Sel, isInstance))) in lookupMethod()
481 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
489 if ((MethodDecl = Cat->getMethod(Sel, isInstance))) in lookupMethod()
499 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()
514 const Selector &Sel, in lookupPrivateMethod() argument
525 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()
526 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
530 Method = Instance ? getCategoryInstanceMethod(Sel) in lookupPrivateMethod()
531 : getCategoryClassMethod(Sel); in lookupPrivateMethod()
537 Method = lookupInstanceMethod(Sel); in lookupPrivateMethod()
541 Method = lookupPrivateMethod(Sel, true); in lookupPrivateMethod()
545 return getSuperClass()->lookupPrivateMethod(Sel, Instance); in lookupPrivateMethod()
1002 Selector Sel = getSelector(); in findPropertyDecl() local
1003 unsigned NumArgs = Sel.getNumArgs(); in findPropertyDecl()
1024 if (NextSel == Sel) in findPropertyDecl()
1243 ObjCInterfaceDecl::getCategoryInstanceMethod(Selector Sel) const { in getCategoryInstanceMethod()
1249 if (ObjCMethodDecl *MD = Impl->getInstanceMethod(Sel)) in getCategoryInstanceMethod()
1256 ObjCMethodDecl *ObjCInterfaceDecl::getCategoryClassMethod(Selector Sel) const { in getCategoryClassMethod()
1262 if (ObjCMethodDecl *MD = Impl->getClassMethod(Sel)) in getCategoryClassMethod()
1461 ObjCMethodDecl *ObjCProtocolDecl::lookupMethod(Selector Sel, in lookupMethod() argument
1471 if ((MethodDecl = getMethod(Sel, isInstance))) in lookupMethod()
1475 if ((MethodDecl = (*I)->lookupMethod(Sel, isInstance))) in lookupMethod()