Home
last modified time | relevance | path

Searched refs:TypeOffsets (Results 1 – 5 of 5) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Serialization/
H A DModule.cpp44 LocalNumTypes(0), TypeOffsets(nullptr), BaseTypeIndex(0) in ModuleFile()
H A DASTWriter.cpp2724 if (TypeOffsets.size() == Index) in WriteType()
2725 TypeOffsets.push_back(Stream.GetCurrentBitNo()); in WriteType()
2726 else if (TypeOffsets.size() < Index) { in WriteType()
2727 TypeOffsets.resize(Index + 1); in WriteType()
2728 TypeOffsets[Index] = Stream.GetCurrentBitNo(); in WriteType()
2800 Record.push_back(TypeOffsets.size()); in WriteTypeDeclOffsets()
2802 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, data(TypeOffsets)); in WriteTypeDeclOffsets()
H A DASTReader.cpp2677 F.TypeOffsets = (const uint32_t *)Blob.data(); in ReadASTBlock()
5159 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]); in TypeCursorForIndex()
/minix3/external/bsd/llvm/dist/clang/include/clang/Serialization/
H A DModule.h447 const uint32_t *TypeOffsets; variable
H A DASTWriter.h214 std::vector<uint32_t> TypeOffsets; variable