Home | History | Annotate | Download | only in Serialization

Lines Matching refs:Index

2165     unsigned Index = ID - FirstMacroID;
2166 if (Index == MacroOffsets.size())
2169 if (Index > MacroOffsets.size())
2170 MacroOffsets.resize(Index + 1);
2172 MacroOffsets[Index] = Stream.GetCurrentBitNo();
2701 unsigned Index = Idx.getIndex() - FirstTypeID;
2702 if (TypeOffsets.size() == Index)
2704 else if (TypeOffsets.size() < Index) {
2705 TypeOffsets.resize(Index + 1);
2706 TypeOffsets[Index] = Stream.GetCurrentBitNo();
2774 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base type index
3255 /// (the actual identifiers themselves) and a separate "offsets" index
3360 /// A start and end index into DeclIDs, representing a sequence of decls.
5386 unsigned Index = CXXBaseSpecifiersToWrite[I].ID - 1;
5387 if (Index == CXXBaseSpecifiersOffsets.size())
5390 if (Index > CXXBaseSpecifiersOffsets.size())
5391 CXXBaseSpecifiersOffsets.resize(Index + 1);
5392 CXXBaseSpecifiersOffsets[Index] = Stream.GetCurrentBitNo();
5458 unsigned Index = Init.ID - 1;
5459 if (Index == CXXCtorInitializersOffsets.size())
5462 if (Index > CXXCtorInitializersOffsets.size())
5463 CXXCtorInitializersOffsets.resize(Index + 1);
5464 CXXCtorInitializersOffsets[Index] = Stream.GetCurrentBitNo();
5615 // Always take the highest-numbered type index. This copes with an interesting