Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DModule.h452 const uint32_t *TypeOffsets = nullptr; variable
H A DASTWriter.h256 std::vector<uint32_t> TypeOffsets; variable
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp3158 if (TypeOffsets.size() == Index) in WriteType()
3159 TypeOffsets.push_back(Offset); in WriteType()
3160 else if (TypeOffsets.size() < Index) { in WriteType()
3161 TypeOffsets.resize(Index + 1); in WriteType()
3162 TypeOffsets[Index] = Offset; in WriteType()
3207 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(), in WriteTypeDeclOffsets()
3209 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
H A DASTReader.cpp2823 F.TypeOffsets = (const uint32_t *)Blob.data(); in ReadASTBlock()
5854 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]); in TypeCursorForIndex()