Lines Matching refs:byteToColumn
197 static void byteToColumn(StringRef SourceLine, unsigned TabStop, in byteToColumn() function
258 ::byteToColumn(SourceLine, TabStop, m_byteToColumn); in SourceColumnMap()
273 int byteToColumn(int n) const { in byteToColumn() function
297 while (byteToColumn(++N) == -1) {} in startOfNextColumn()
304 while (byteToColumn(--N) == -1) {} in startOfPreviousColumn()
403 - (map.byteToColumn(SourceEnd)-map.byteToColumn(SourceStart)); in selectInterestingSourceRegion()
436 assert(map.byteToColumn(NewStart) != -1); in selectInterestingSourceRegion()
437 unsigned NewColumns = map.byteToColumn(SourceEnd) - in selectInterestingSourceRegion()
438 map.byteToColumn(NewStart); in selectInterestingSourceRegion()
458 assert(map.byteToColumn(NewEnd) != -1); in selectInterestingSourceRegion()
459 unsigned NewColumns = map.byteToColumn(NewEnd) - in selectInterestingSourceRegion()
460 map.byteToColumn(SourceStart); in selectInterestingSourceRegion()
471 CaretStart = map.byteToColumn(SourceStart); in selectInterestingSourceRegion()
472 CaretEnd = map.byteToColumn(SourceEnd) + CaretColumnsOutsideSource; in selectInterestingSourceRegion()
484 = map.byteToColumn(SourceLine.size())-map.byteToColumn(SourceEnd); in selectInterestingSourceRegion()