Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DTextDiagnostic.cpp987 unsigned StartColNo = 0; in highlightRange() local
989 StartColNo = SM.getExpansionColumnNumber(Begin); in highlightRange()
990 if (StartColNo) --StartColNo; // Zero base the col #. in highlightRange()
1009 assert(StartColNo <= EndColNo && "Invalid range!"); in highlightRange()
1014 while (StartColNo < map.getSourceLine().size() && in highlightRange()
1015 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
1016 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
1017 StartColNo = map.startOfNextColumn(StartColNo); in highlightRange()
1030 if (StartColNo > EndColNo) { in highlightRange()
1032 StartColNo = EndColNo; in highlightRange()
[all …]