Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DModule.cpp44 LocalNumTypes(0), TypeOffsets(nullptr), BaseTypeIndex(0) in ModuleFile()
DASTWriter.cpp2702 if (TypeOffsets.size() == Index) in WriteType()
2703 TypeOffsets.push_back(Stream.GetCurrentBitNo()); in WriteType()
2704 else if (TypeOffsets.size() < Index) { in WriteType()
2705 TypeOffsets.resize(Index + 1); in WriteType()
2706 TypeOffsets[Index] = Stream.GetCurrentBitNo(); in WriteType()
2778 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(), in WriteTypeDeclOffsets()
2780 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
DASTReader.cpp2554 F.TypeOffsets = (const uint32_t *)Blob.data(); in ReadASTBlock()
5166 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]); in TypeCursorForIndex()
/external/clang/include/clang/Serialization/
DModule.h438 const uint32_t *TypeOffsets; variable
DASTWriter.h227 std::vector<uint32_t> TypeOffsets; variable