reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Frontend/TextDiagnostic.cpp
 1012   unsigned EndColNo = map.getSourceLine().size();
 1032     while (StartColNo < map.getSourceLine().size() &&
 1033            (map.getSourceLine()[StartColNo] == ' ' ||
 1034             map.getSourceLine()[StartColNo] == '\t'))
 1035       StartColNo = map.startOfNextColumn(StartColNo);
 1038     if (EndColNo > map.getSourceLine().size())
 1039       EndColNo = map.getSourceLine().size();
 1041            (map.getSourceLine()[EndColNo-1] == ' ' ||
 1042             map.getSourceLine()[EndColNo-1] == '\t'))
 1043       EndColNo = map.startOfPreviousColumn(EndColNo);
 1054   assert(StartColNo <= map.getSourceLine().size() && "Invalid range!");
 1055   assert(EndColNo <= map.getSourceLine().size() && "Invalid range!");
 1058   StartColNo = map.byteToContainingColumn(StartColNo);
 1059   EndColNo = map.byteToContainingColumn(EndColNo);