Lines Matching refs:getSourceLine
308 StringRef getSourceLine() const { in getSourceLine() function
934 unsigned EndColNo = map.getSourceLine().size(); in highlightRange()
954 while (StartColNo < map.getSourceLine().size() && in highlightRange()
955 (map.getSourceLine()[StartColNo] == ' ' || in highlightRange()
956 map.getSourceLine()[StartColNo] == '\t')) in highlightRange()
960 if (EndColNo > map.getSourceLine().size()) in highlightRange()
961 EndColNo = map.getSourceLine().size(); in highlightRange()
963 (map.getSourceLine()[EndColNo-1] == ' ' || in highlightRange()
964 map.getSourceLine()[EndColNo-1] == '\t')) in highlightRange()
973 assert(StartColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()
974 assert(EndColNo <= map.getSourceLine().size() && "Invalid range!"); in highlightRange()