Lines Matching refs:PrevDecl
2969 FunctionDecl::setPreviousDeclaration(FunctionDecl *PrevDecl) { in setPreviousDeclaration() argument
2970 redeclarable_base::setPreviousDecl(PrevDecl); in setPreviousDeclaration()
2974 = PrevDecl? PrevDecl->getDescribedFunctionTemplate() : nullptr; in setPreviousDeclaration()
2975 assert((!PrevDecl || PrevFunTmpl) && "Function/function template mismatch"); in setPreviousDeclaration()
2979 if (PrevDecl && PrevDecl->isInlined()) in setPreviousDeclaration()
3841 SourceLocation L, IdentifierInfo *Id, TagDecl *PrevDecl, in TagDecl() argument
3847 setPreviousDecl(PrevDecl); in TagDecl()
3959 SourceLocation IdLoc, IdentifierInfo *Id, EnumDecl *PrevDecl, in EnumDecl() argument
3961 : TagDecl(Enum, TTK_Enum, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in EnumDecl()
3978 EnumDecl *PrevDecl, bool IsScoped, in Create() argument
3980 auto *Enum = new (C, DC) EnumDecl(C, DC, StartLoc, IdLoc, Id, PrevDecl, in Create()
3983 C.getTypeDeclType(Enum, PrevDecl); in Create()
4092 RecordDecl *PrevDecl) in RecordDecl() argument
4093 : TagDecl(DK, TK, C, DC, IdLoc, Id, PrevDecl, StartLoc) { in RecordDecl()
4109 IdentifierInfo *Id, RecordDecl* PrevDecl) { in Create() argument
4111 StartLoc, IdLoc, Id, PrevDecl); in Create()
4114 C.getTypeDeclType(R, PrevDecl); in Create()