Lines Matching refs:PrevDecl
3224 FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) { in setPreviousDeclaration() argument
3225 redeclarable_base::setPreviousDecl(PrevDecl); in setPreviousDeclaration()
3229 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr; in setPreviousDeclaration()
3230 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch"); in setPreviousDeclaration()
3234 if (PrevDecl && PrevDecl->isInlined()) in setPreviousDeclaration()
4216 SourceLocation L, IdentifierInfo *Id, TagDecl *PrevDecl, in TagDecl() argument
4222 setPreviousDecl(PrevDecl); in TagDecl()
4334 SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, in EnumDecl() argument
4336 : TagDecl(Enum, TTK_Enum, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in EnumDecl()
4353 EnumDecl *PrevDecl, bool IsScoped, in Create() argument
4355 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl, in Create()
4358 C.getTypeDeclType(Enum, PrevDecl); in Create()
4467 RecordDecl *PrevDecl) in RecordDecl() argument
4468 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in RecordDecl()
4487 IdentifierInfo *Id, RecordDecl* PrevDecl) { in Create() argument
4489 StartLoc, IdLoc, Id, PrevDecl); in Create()
4492 C.getTypeDeclType(R, PrevDecl); in Create()