Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4998 RecordData SpecialTypes; in WriteASTCore() local
4999 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); in WriteASTCore()
5000 AddTypeRef(Context.getFILEType(), SpecialTypes); in WriteASTCore()
5001 AddTypeRef(Context.getjmp_bufType(), SpecialTypes); in WriteASTCore()
5002 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); in WriteASTCore()
5003 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); in WriteASTCore()
5004 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); in WriteASTCore()
5005 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); in WriteASTCore()
5006 AddTypeRef(Context.getucontext_tType(), SpecialTypes); in WriteASTCore()
5123 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); in WriteASTCore()
H A DASTReader.cpp3483 if (SpecialTypes.empty()) { in ReadASTBlock()
3485 SpecialTypes.push_back(getGlobalTypeID(F, Record[I])); in ReadASTBlock()
3489 if (SpecialTypes.size() != Record.size()) in ReadASTBlock()
3495 if (!SpecialTypes[I]) in ReadASTBlock()
3496 SpecialTypes[I] = ID; in ReadASTBlock()
5099 if (SpecialTypes.size() >= NumSpecialTypeIDs) { in InitializeContext()
5105 if (unsigned File = SpecialTypes[SPECIAL_TYPE_FILE]) { in InitializeContext()
5126 if (unsigned Jmp_buf = SpecialTypes[SPECIAL_TYPE_JMP_BUF]) { in InitializeContext()
5166 = SpecialTypes[SPECIAL_TYPE_OBJC_ID_REDEFINITION]) { in InitializeContext()
5172 = SpecialTypes[SPECIAL_TYPE_OBJC_CLASS_REDEFINITION]) { in InitializeContext()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h871 SmallVector<serialization::TypeID, 16> SpecialTypes; variable