Searched refs:SpecialTypes (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 5414 RecordData SpecialTypes; in WriteASTCore() local 5415 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore() 5416 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore() 5417 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore() 5418 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore() 5419 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore() 5420 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore() 5421 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore() 5422 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore() 5536 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
|
| H A D | ASTReader.cpp | 3495 if (SpecialTypes.empty()) { in ReadASTBlock() 3497 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock() 3501 if (SpecialTypes.size() != Record.size()) in ReadASTBlock() 3507 if (!SpecialTypes[I]) in ReadASTBlock() 3508 SpecialTypes[I] = ID; in ReadASTBlock() 5105 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext() 5106 if (TypeID String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext() 5111 if (TypeID File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext() 5132 if (TypeID Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext() 5153 if (TypeID Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext() [all …]
|
| /src/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ASTReader.h | 879 SmallVector<serialization::TypeID, 16> SpecialTypes; variable
|