Lines Matching refs:getSourceLine
308 StringRef getSourceLine() const { in getSourceLine() function
1003 unsigned EndColNo = map.getSourceLine().size(); in highlightRange()
1023 while (StartColNo < map.getSourceLine().size() && in highlightRange()
1024 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
1025 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
1029 if (EndColNo > map.getSourceLine().size()) in highlightRange()
1030 EndColNo = map.getSourceLine().size(); in highlightRange()
1032 (map.getSourceLine()[EndColNo-1] == ' ' || in highlightRange()
1033 map.getSourceLine()[EndColNo-1] == '\t')) in highlightRange()
1045 assert(StartColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()
1046 assert(EndColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()