Searched refs:CaretEnd (Results 1 – 1 of 1) sorted by relevance
338 unsigned CaretStart = 0, CaretEnd = CaretLine.size(); in selectInterestingSourceRegion() local339 for (; CaretStart != CaretEnd; ++CaretStart) in selectInterestingSourceRegion()343 for (; CaretEnd != CaretStart; --CaretEnd) in selectInterestingSourceRegion()344 if (!isWhitespace(CaretLine[CaretEnd - 1])) in selectInterestingSourceRegion()370 CaretEnd = std::max(FixItEndCol, CaretEnd); in selectInterestingSourceRegion()376 while (static_cast<int>(CaretEnd) < map.columns() && in selectInterestingSourceRegion()377 -1 == map.columnToByte(CaretEnd)) in selectInterestingSourceRegion()378 ++CaretEnd; in selectInterestingSourceRegion()384 assert((static_cast<int>(CaretEnd) > map.columns() || in selectInterestingSourceRegion()385 -1!=map.columnToByte(CaretEnd)) && in selectInterestingSourceRegion()[all …]