Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DModule.cpp42 LocalNumTypes(0), TypeOffsets(nullptr), BaseTypeIndex(0) in ModuleFile()
DASTWriter.cpp2748 if (TypeOffsets.size() == Index) in WriteType()
2749 TypeOffsets.push_back(Offset); in WriteType()
2750 else if (TypeOffsets.size() < Index) { in WriteType()
2751 TypeOffsets.resize(Index + 1); in WriteType()
2752 TypeOffsets[Index] = Offset; in WriteType()
2797 RecordData::value_type Record[] = {TYPE_OFFSET, TypeOffsets.size(), in WriteTypeDeclOffsets()
2799 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, bytes(TypeOffsets)); in WriteTypeDeclOffsets()
DASTReader.cpp2574 F.TypeOffsets = (const uint32_t *)Blob.data(); in ReadASTBlock()
5188 return RecordLocation(M, M->TypeOffsets[Index - M->BaseTypeIndex]); in TypeCursorForIndex()
/external/clang/include/clang/Serialization/
DModule.h424 const uint32_t *TypeOffsets; variable
DASTWriter.h229 std::vector<uint32_t> TypeOffsets; variable