Lines Matching refs:ImpDecl
1993 void Sema::CheckImplementationIvars(ObjCImplementationDecl *ImpDecl, in CheckImplementationIvars() argument
1996 assert(ImpDecl && "missing implementation decl"); in CheckImplementationIvars()
1997 ObjCInterfaceDecl* IDecl = ImpDecl->getClassInterface(); in CheckImplementationIvars()
2007 ivars[i]->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2009 ImpDecl->addDecl(ivars[i]); in CheckImplementationIvars()
2020 if (ImpDecl->getSuperClass()) in CheckImplementationIvars()
2021 Diag(ImpDecl->getLocation(), diag::warn_on_superclass_use); in CheckImplementationIvars()
2040 ImplIvar->setLexicalDeclContext(ImpDecl); in CheckImplementationIvars()
2042 ImpDecl->addDecl(ImplIvar); in CheckImplementationIvars()
4253 if (ObjCImplDecl *ImpDecl = dyn_cast<ObjCImplDecl>(ClassDecl)) { in ActOnMethodDeclaration() local
4255 PrevMethod = ImpDecl->getInstanceMethod(Sel); in ActOnMethodDeclaration()
4256 ImpDecl->addInstanceMethod(ObjCMethod); in ActOnMethodDeclaration()
4258 PrevMethod = ImpDecl->getClassMethod(Sel); in ActOnMethodDeclaration()
4259 ImpDecl->addClassMethod(ObjCMethod); in ActOnMethodDeclaration()
4264 if (ObjCInterfaceDecl *IDecl = ImpDecl->getClassInterface()) { in ActOnMethodDeclaration()
4270 if (isa<ObjCCategoryImplDecl>(ImpDecl) && IMD->isOverriding() && in ActOnMethodDeclaration()