Home | History | Annotate | Download | only in Lex

Lines Matching refs:Index

329     unsigned Index = -PPID.ID - 1;
330 assert(Index < LoadedPreprocessedEntities.size() &&
332 return getLoadedPreprocessedEntity(Index);
337 unsigned Index = PPID.ID - 1;
338 assert(Index < PreprocessedEntities.size() &&
340 return PreprocessedEntities[Index];
343 /// \brief Retrieve the loaded preprocessed entity at the given index.
345 PreprocessingRecord::getLoadedPreprocessedEntity(unsigned Index) {
346 assert(Index < LoadedPreprocessedEntities.size() &&
349 PreprocessedEntity *&Entity = LoadedPreprocessedEntities[Index];
351 Entity = ExternalSource->ReadPreprocessedEntity(Index);