Home
last modified time | relevance | path

Searched refs:CaretEnd (Results 1 – 1 of 1) sorted by relevance

/external/clang/lib/Frontend/
DTextDiagnostic.cpp341 unsigned CaretStart = 0, CaretEnd = CaretLine.size(); in selectInterestingSourceRegion() local
342 for (; CaretStart != CaretEnd; ++CaretStart) in selectInterestingSourceRegion()
346 for (; CaretEnd != CaretStart; --CaretEnd) in selectInterestingSourceRegion()
347 if (!isWhitespace(CaretLine[CaretEnd - 1])) in selectInterestingSourceRegion()
373 CaretEnd = std::max(FixItEndCol, CaretEnd); in selectInterestingSourceRegion()
379 while (static_cast<int>(CaretEnd) < map.columns() && in selectInterestingSourceRegion()
380 -1 == map.columnToByte(CaretEnd)) in selectInterestingSourceRegion()
381 ++CaretEnd; in selectInterestingSourceRegion()
387 assert((static_cast<int>(CaretEnd) > map.columns() || in selectInterestingSourceRegion()
388 -1!=map.columnToByte(CaretEnd)) && in selectInterestingSourceRegion()
[all …]