Lines Matching refs:getSourceLine
309 StringRef getSourceLine() const { in getSourceLine() function
994 unsigned EndColNo = map.getSourceLine().size(); in highlightRange()
1014 while (StartColNo < map.getSourceLine().size() && in highlightRange()
1015 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
1016 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
1020 if (EndColNo > map.getSourceLine().size()) in highlightRange()
1021 EndColNo = map.getSourceLine().size(); in highlightRange()
1023 (map.getSourceLine()[EndColNo-1] == ' ' || in highlightRange()
1024 map.getSourceLine()[EndColNo-1] == '\t')) in highlightRange()
1036 assert(StartColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()
1037 assert(EndColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()