Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp332 LocalLocOffsetTable.clear(); in clearIDTables()
632 assert(LocalSLocEntryTable.size() == LocalLocOffsetTable.size()); in createFileIDImpl()
636 LocalLocOffsetTable.push_back(NextLocalOffset); in createFileIDImpl()
690 assert(LocalSLocEntryTable.size() == LocalLocOffsetTable.size()); in createExpansionLocImpl()
692 LocalLocOffsetTable.push_back(NextLocalOffset); in createExpansionLocImpl()
815 assert(LocalSLocEntryTable.size() == LocalLocOffsetTable.size()); in getFileIDLocal()
835 unsigned GreaterIndex = LocalLocOffsetTable.size(); in getFileIDLocal()
846 assert(GreaterIndex < LocalLocOffsetTable.size()); in getFileIDLocal()
847 if (LocalLocOffsetTable[GreaterIndex] <= SLocOffset) { in getFileIDLocal()
851 LastLookupStartOffset = LocalLocOffsetTable[GreaterIndex]; in getFileIDLocal()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DSourceManager.h723 SmallVector<SourceLocation::UIntTy> LocalLocOffsetTable; variable