Lines Matching refs:byteToColumn
198 static void byteToColumn(StringRef SourceLine, unsigned TabStop, in byteToColumn() function
259 ::byteToColumn(SourceLine, TabStop, m_byteToColumn); in SourceColumnMap()
274 int byteToColumn(int n) const { in byteToColumn() function
298 while (byteToColumn(++N) == -1) {} in startOfNextColumn()
305 while (byteToColumn(--N) == -1) {} in startOfPreviousColumn()
404 - (map.byteToColumn(SourceEnd)-map.byteToColumn(SourceStart)); in selectInterestingSourceRegion()
437 assert(map.byteToColumn(NewStart) != -1); in selectInterestingSourceRegion()
438 unsigned NewColumns = map.byteToColumn(SourceEnd) - in selectInterestingSourceRegion()
439 map.byteToColumn(NewStart); in selectInterestingSourceRegion()
459 assert(map.byteToColumn(NewEnd) != -1); in selectInterestingSourceRegion()
460 unsigned NewColumns = map.byteToColumn(NewEnd) - in selectInterestingSourceRegion()
461 map.byteToColumn(SourceStart); in selectInterestingSourceRegion()
472 CaretStart = map.byteToColumn(SourceStart); in selectInterestingSourceRegion()
473 CaretEnd = map.byteToColumn(SourceEnd) + CaretColumnsOutsideSource; in selectInterestingSourceRegion()
485 = map.byteToColumn(SourceLine.size())-map.byteToColumn(SourceEnd); in selectInterestingSourceRegion()