Searched refs:SpecialTypes (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/Serialization/ |
D | ASTReader.cpp | 2845 if (SpecialTypes.empty()) { in ReadASTBlock() 2847 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock() 2851 if (SpecialTypes.size() != Record.size()) { in ReadASTBlock() 2858 if (!SpecialTypes[I]) in ReadASTBlock() 2859 SpecialTypes[I] = ID; in ReadASTBlock() 3969 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext() 3970 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext() 3975 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext() 3996 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext() 4017 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext() [all …]
|
D | ASTWriter.cpp | 4498 RecordData SpecialTypes; in WriteASTCore() local 4499 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore() 4500 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore() 4501 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore() 4502 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore() 4503 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore() 4504 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore() 4505 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore() 4506 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore() 4618 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 800 SmallVector<uint64_t, 16> SpecialTypes; variable
|