Searched refs:ImpDecl (Results 1 – 5 of 5) sorted by relevance
1080 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument1083 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()1084 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()1094 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()1096 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()1107 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()1108 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()1118 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()1120 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()2979 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local[all …]
1603 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local1604 Getter = ImpDecl->getClassMethod(Sel); in ActOnClassPropertyRefExpr()1624 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local1625 Setter = ImpDecl->getClassMethod(SetterSel); in ActOnClassPropertyRefExpr()
1472 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation()) in isPropertyReadonly() local1473 if (ImpDecl->getInstanceMethod(PDecl->getSetterName())) in isPropertyReadonly()
441 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local442 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()443 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
2430 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,