Home
last modified time | relevance | path

Searched refs:LocalSLocEntryTable (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp345 LocalSLocEntryTable.clear(); in clearIDTables()
625 LocalSLocEntryTable.push_back( in createFileIDImpl()
635 FileID FID = FileID::get(LocalSLocEntryTable.size()-1); in createFileIDImpl()
679 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info)); in createExpansionLocImpl()
818 unsigned GreaterIndex = LocalSLocEntryTable.size(); in getFileIDLocal()
821 if (LocalSLocEntryTable[LastFileIDLookup.ID].getOffset() < SLocOffset) in getFileIDLocal()
831 assert(GreaterIndex < LocalSLocEntryTable.size()); in getFileIDLocal()
832 if (LocalSLocEntryTable[GreaterIndex].getOffset() <= SLocOffset) { in getFileIDLocal()
859 if (MiddleIndex + 1 == LocalSLocEntryTable.size() || in getFileIDLocal()
2163 llvm::errs() << LocalSLocEntryTable.size() << " local SLocEntries allocated (" in PrintStats()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h721 SmallVector<SrcMgr::SLocEntry, 0> LocalSLocEntryTable; variable
1738 unsigned local_sloc_entry_size() const { return LocalSLocEntryTable.size(); } in local_sloc_entry_size()
1747 assert(Index < LocalSLocEntryTable.size() && "Invalid index"); in getLocalSLocEntry()
1748 return LocalSLocEntryTable[Index]; in getLocalSLocEntry()
1778 return LocalSLocEntryTable[0];
1932 if (FID.ID+1 == static_cast<int>(LocalSLocEntryTable.size())) in isOffsetInFileID()