Home
last modified time | relevance | path

Searched refs:SpecialTypes (Results 1 – 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/clang/lib/Serialization/
DASTReader.cpp2246 if (SpecialTypes.empty()) { in ReadASTBlock()
2248 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock()
2252 if (SpecialTypes.size() != Record.size()) { in ReadASTBlock()
2259 if (!SpecialTypes[I]) in ReadASTBlock()
2260 SpecialTypes[I] = ID; in ReadASTBlock()
3215 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext()
3216 if (unsigned String = SpecialTypes[SPECIAL_TYPE_CF_CONSTANT_STRING]) { in InitializeContext()
3221 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext()
3242 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext()
3263 if (unsigned Sigjmp_buf = SpecialTypes[SPECIAL_TYPE_SIGJMP_BUF]) { in InitializeContext()
[all …]
DASTWriter.cpp4097 RecordData SpecialTypes; in WriteASTCore() local
4098 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore()
4099 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore()
4100 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore()
4101 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore()
4102 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore()
4103 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore()
4104 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore()
4105 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore()
4192 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Serialization/
DASTReader.h693 SmallVector<uint64_t, 16> SpecialTypes; variable