Home | History | Annotate | Download | only in Basic

Lines Matching refs:Index

359   /// \brief Read the source location entry with index ID, which will always be
464 /// Negative FileIDs are indexes into this table. To get from ID to an index,
1034 const SrcMgr::SLocEntry &getLocalSLocEntry(unsigned Index,
1036 assert(Index < LocalSLocEntryTable.size() && "Invalid index");
1037 return LocalSLocEntryTable[Index];
1044 const SrcMgr::SLocEntry &getLoadedSLocEntry(unsigned Index, bool *Invalid=0) const {
1045 assert(Index < LoadedSLocEntryTable.size() && "Invalid index");
1046 if (!SLocEntryLoaded[Index])
1047 ExternalSLocEntries->ReadSLocEntry(-(static_cast<int>(Index) + 2));
1048 return LoadedSLocEntryTable[Index];