Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DTextDiagnostic.cpp338 unsigned CaretStart = 0, CaretEnd = CaretLine.size(); in selectInterestingSourceRegion() local
339 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 …]