Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DBreakableToken.cpp263 StartOfLineColumn.resize(Lines.size()); in BreakableBlockComment()
264 StartOfLineColumn[0] = StartColumn + 2; in BreakableBlockComment()
288 IndentAtLineBreak = StartOfLineColumn[0] + 1; in BreakableBlockComment()
299 StartOfLineColumn[i] = 0; in BreakableBlockComment()
309 StartOfLineColumn[i] += DecorationSize; in BreakableBlockComment()
314 std::min<int>(IndentAtLineBreak, std::max(0, StartOfLineColumn[i])); in BreakableBlockComment()
359 StartOfLineColumn[LineIndex] = in adjustWhitespace()
435 if (StartOfLineColumn[LineIndex] == 1) { in replaceWhitespaceBefore()
447 StartOfLineColumn[LineIndex] - Prefix.size()); in replaceWhitespaceBefore()
456 return std::max(0, StartOfLineColumn[LineIndex]); in getContentStartColumn()
DBreakableToken.h220 SmallVector<int, 16> StartOfLineColumn; variable