Searched refs:ImpDecl (Results 1 – 6 of 6) sorted by relevance
996 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument999 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()1000 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()1010 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()1012 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()1023 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()1024 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()1034 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()1036 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()2398 if (ObjCImplementationDecl *ImpDecl = in ActOnMethodDeclaration() local[all …]
470 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in LookupPrivateClassMethod() local471 Method = ImpDecl->getClassMethod(Sel); in LookupPrivateClassMethod()498 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in LookupPrivateInstanceMethod() local499 Method = ImpDecl->getInstanceMethod(Sel); in LookupPrivateInstanceMethod()775 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local776 Getter = ImpDecl->getClassMethod(Sel); in ActOnClassPropertyRefExpr()796 if (ObjCImplementationDecl *ImpDecl = ClassDecl->getImplementation()) in ActOnClassPropertyRefExpr() local797 Setter = ImpDecl->getClassMethod(SetterSel); in ActOnClassPropertyRefExpr()
1104 if (ObjCImplementationDecl *ImpDecl = IDecl->getImplementation()) in isPropertyReadonly() local1105 if (ImpDecl->getInstanceMethod(PDecl->getSetterName())) in isPropertyReadonly()
318 if (ObjCImplementationDecl *ImpDecl = getImplementation()) in lookupPrivateMethod() local319 Method = Instance ? ImpDecl->getInstanceMethod(Sel) in lookupPrivateMethod()320 : ImpDecl->getClassMethod(Sel); in lookupPrivateMethod()
1410 Decl *ImpDecl = PendingObjCImpDecl.pop_back_val(); in FinishPendingObjCActions() local1411 Actions.ActOnAtEnd(getCurScope(), SourceRange(), ImpDecl); in FinishPendingObjCActions()1412 return Actions.ConvertDeclToDeclGroup(ImpDecl); in FinishPendingObjCActions()
1787 void CheckImplementationIvars(ObjCImplementationDecl *ImpDecl,