Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.cpp625 size_t EndOfPreviousLine = Lines[LineIndex - 1].size(); in adjustWhitespace() local
627 --EndOfPreviousLine; in adjustWhitespace()
630 EndOfPreviousLine = in adjustWhitespace()
631 Lines[LineIndex - 1].find_last_not_of(Blanks, EndOfPreviousLine); in adjustWhitespace()
632 if (EndOfPreviousLine == StringRef::npos) in adjustWhitespace()
633 EndOfPreviousLine = 0; in adjustWhitespace()
635 ++EndOfPreviousLine; in adjustWhitespace()
646 PreviousContentOffset, EndOfPreviousLine - PreviousContentOffset); in adjustWhitespace()