Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Frontend/
H A DTextDiagnostic.cpp1007 if (EndColNo) { in highlightRange()
1008 --EndColNo; // Zero base the col #. in highlightRange()
1015 EndColNo = CaretLine.size(); in highlightRange()
1031 EndColNo = map.getSourceLine().size(); in highlightRange()
1032 while (EndColNo && in highlightRange()
1035 EndColNo = map.startOfPreviousColumn(EndColNo); in highlightRange()
1040 if (StartColNo > EndColNo) { in highlightRange()
1042 StartColNo = EndColNo; in highlightRange()
1051 EndColNo = map.byteToContainingColumn(EndColNo); in highlightRange()
1054 if (CaretLine.size() < EndColNo) in highlightRange()
[all …]
/llvm-project-15.0.7/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()