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