Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Frontend/
H A DTextDiagnostic.cpp1008 if (EndColNo) { in highlightRange()
1009 --EndColNo; // Zero base the col #. in highlightRange()
1016 EndColNo = CaretLine.size(); in highlightRange()
1032 EndColNo = map.getSourceLine().size(); in highlightRange()
1033 while (EndColNo && in highlightRange()
1036 EndColNo = map.startOfPreviousColumn(EndColNo); in highlightRange()
1041 if (StartColNo > EndColNo) { in highlightRange()
1043 StartColNo = EndColNo; in highlightRange()
1052 EndColNo = map.byteToContainingColumn(EndColNo); in highlightRange()
1055 if (CaretLine.size() < EndColNo) in highlightRange()
[all …]
/openbsd/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DHTMLDiagnostics.cpp1253 unsigned EndColNo = SM.getExpansionColumnNumber(InstantiationEnd); in HighlightRange() local
1254 unsigned OldEndColNo = EndColNo; in HighlightRange()
1256 if (EndColNo) { in HighlightRange()
1258 EndColNo += Lexer::MeasureTokenLength(Range.getEnd(), SM, LangOpts)-1; in HighlightRange()
1265 InstantiationEnd.getLocWithOffset(EndColNo - OldEndColNo); in HighlightRange()