Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DBreakableToken.cpp262 StartOfLineColumn.resize(Lines.size()); in BreakableBlockComment()
263 StartOfLineColumn[0] = StartColumn + 2; in BreakableBlockComment()
285 IndentAtLineBreak = StartOfLineColumn[0] + 1; in BreakableBlockComment()
296 StartOfLineColumn[i] = 0; in BreakableBlockComment()
303 StartOfLineColumn[i] += Decoration.size(); in BreakableBlockComment()
306 IndentAtLineBreak = std::min<int>(IndentAtLineBreak, StartOfLineColumn[i]); in BreakableBlockComment()
351 StartOfLineColumn[LineIndex] = in adjustWhitespace()
428 if (StartOfLineColumn[LineIndex] == 1) { in replaceWhitespaceBefore()
440 StartOfLineColumn[LineIndex] - Prefix.size()); in replaceWhitespaceBefore()
449 return std::max(0, StartOfLineColumn[LineIndex]); in getContentStartColumn()
DBreakableToken.h215 SmallVector<int, 16> StartOfLineColumn; variable