Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/lib/Frontend/
H A DTextDiagnostic.cpp309 StringRef getSourceLine() const { in getSourceLine() function
1005 unsigned EndColNo = map.getSourceLine().size(); in highlightRange()
1025 while (StartColNo < map.getSourceLine().size() && in highlightRange()
1026 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
1027 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
1031 if (EndColNo > map.getSourceLine().size()) in highlightRange()
1032 EndColNo = map.getSourceLine().size(); in highlightRange()
1034 (map.getSourceLine()[EndColNo-1] == ' ' || in highlightRange()
1035 map.getSourceLine()[EndColNo-1] == '\t')) in highlightRange()
1047 assert(StartColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()
[all …]