Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp4899 RecordData SpecialTypes; in WriteASTCore() local
4900 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore()
4901 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore()
4902 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore()
4903 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore()
4904 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore()
4905 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore()
4906 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore()
4907 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore()
5024 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
H A DASTReader.cpp3294 if (SpecialTypes.empty()) { in ReadASTBlock()
3296 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock()
3300 if (SpecialTypes.size() != Record.size()) in ReadASTBlock()
3306 if (!SpecialTypes[I]) in ReadASTBlock()
3307 SpecialTypes[I] = ID; in ReadASTBlock()
4929 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext()
4935 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext()
4956 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext()
4996 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) { in InitializeContext()
5002 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) { in InitializeContext()
[all …]
/openbsd/gnu/llvm/clang/include/clang/Serialization/
H A DASTReader.h863 SmallVector<serialization::TypeID, 16> SpecialTypes; variable