Searched refs:SpecialTypes (Results 1 – 3 of 3) sorted by relevance
/external/clang/lib/Serialization/ |
D | ASTWriter.cpp | 4406 RecordData SpecialTypes; in WriteASTCore() local 4407 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore() 4408 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore() 4409 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore() 4410 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore() 4411 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore() 4412 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore() 4413 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore() 4414 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore() 4519 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
|
D | ASTReader.cpp | 2699 if (SpecialTypes.empty()) { in ReadASTBlock() 2701 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock() 2705 if (SpecialTypes.size() != Record.size()) { in ReadASTBlock() 2712 if (!SpecialTypes[I]) in ReadASTBlock() 2713 SpecialTypes[I] = ID; in ReadASTBlock() 3940 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext() 3941 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext() 3946 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext() 3967 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext() 3988 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext() [all …]
|
/external/clang/include/clang/Serialization/ |
D | ASTReader.h | 769 SmallVector<uint64_t, 16> SpecialTypes; variable
|