Lines Matching refs:getSourceLine
308 StringRef getSourceLine() const { in getSourceLine() function
942 unsigned EndColNo = map.getSourceLine().size(); in highlightRange()
962 while (StartColNo < map.getSourceLine().size() && in highlightRange()
963 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
964 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
968 if (EndColNo > map.getSourceLine().size()) in highlightRange()
969 EndColNo = map.getSourceLine().size(); in highlightRange()
971 (map.getSourceLine()[EndColNo-1] == ' ' || in highlightRange()
972 map.getSourceLine()[EndColNo-1] == '\t')) in highlightRange()
981 assert(StartColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()
982 assert(EndColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()