Home | History | Annotate | Download | only in AST

Lines Matching defs:Mem

1165   void *Mem = AllocateDeserializedDecl(C, ID, sizeof(VarDecl));
1166 return new (Mem) VarDecl(Var, 0, SourceLocation(), SourceLocation(), 0,
1539 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ParmVarDecl));
1540 return new (Mem) ParmVarDecl(ParmVar, 0, SourceLocation(), SourceLocation(),
2455 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FieldDecl));
2456 return new (Mem) FieldDecl(Field, 0, SourceLocation(), SourceLocation(),
2627 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumDecl));
2628 return new (Mem) EnumDecl(0, SourceLocation(), SourceLocation(), 0, 0,
2701 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(RecordDecl));
2702 return new (Mem) RecordDecl(Record, TTK_Struct, 0, SourceLocation(),
2832 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(LabelDecl));
2833 return new (Mem) LabelDecl(0, SourceLocation(), 0, 0, SourceLocation());
2849 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(ImplicitParamDecl));
2850 return new (Mem) ImplicitParamDecl(0, SourceLocation(), 0, QualType());
2870 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FunctionDecl));
2871 return new (Mem) FunctionDecl(Function, 0, SourceLocation(),
2881 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(BlockDecl));
2882 return new (Mem) BlockDecl(0, SourceLocation());
2894 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(EnumConstantDecl));
2895 return new (Mem) EnumConstantDecl(0, SourceLocation(), 0, QualType(), 0,
2910 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(IndirectFieldDecl));
2911 return new (Mem) IndirectFieldDecl(0, SourceLocation(), DeclarationName(),
2933 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypedefDecl));
2934 return new (Mem) TypedefDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2945 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(TypeAliasDecl));
2946 return new (Mem) TypeAliasDecl(0, SourceLocation(), SourceLocation(), 0, 0);
2976 void *Mem = AllocateDeserializedDecl(C, ID, sizeof(FileScopeAsmDecl));
2977 return new (Mem) FileScopeAsmDecl(0, 0, SourceLocation(), SourceLocation());
3018 void *Mem = C.Allocate(sizeof(ImportDecl) +
3020 return new (Mem) ImportDecl(DC, StartLoc, Imported, IdentifierLocs);
3027 void *Mem = C.Allocate(sizeof(ImportDecl) + sizeof(SourceLocation));
3028 ImportDecl *Import = new (Mem) ImportDecl(DC, StartLoc, Imported, EndLoc);
3035 void *Mem = AllocateDeserializedDecl(C, ID,
3038 return new (Mem) ImportDecl(EmptyShell());