Home
last modified time | relevance | path

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

/trueos/contrib/llvm/tools/clang/lib/Basic/
HDSourceManager.cpp426 NextLocalOffset = 0; in clearIDTables()
512 assert(CurrentLoadedOffset >= NextLocalOffset && "Out of source locations"); in AllocateLoadedSLocEntries()
597 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, in createFileID()
601 assert(NextLocalOffset + FileSize + 1 > NextLocalOffset && in createFileID()
602 NextLocalOffset + FileSize + 1 <= CurrentLoadedOffset && in createFileID()
606 NextLocalOffset += FileSize + 1; in createFileID()
649 LocalSLocEntryTable.push_back(SLocEntry::get(NextLocalOffset, Info)); in createExpansionLocImpl()
650 assert(NextLocalOffset + TokLength + 1 > NextLocalOffset && in createExpansionLocImpl()
651 NextLocalOffset + TokLength + 1 <= CurrentLoadedOffset && in createExpansionLocImpl()
654 NextLocalOffset += TokLength + 1; in createExpansionLocImpl()
[all …]
/trueos/contrib/llvm/tools/clang/include/clang/Basic/
HDSourceManager.h601 unsigned NextLocalOffset; variable
1188 assert(((Start.getOffset() < NextLocalOffset &&
1189 Start.getOffset()+Length <= NextLocalOffset) ||
1503 unsigned getNextLocalOffset() const { return NextLocalOffset; } in getNextLocalOffset()
1527 return Loc.getOffset() < NextLocalOffset; in isLocalSourceLocation()
1596 return SLocOffset < NextLocalOffset; in isOffsetInFileID()