Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DBreakableToken.cpp285 IndentAtLineBreak = StartOfLineColumn[0] + 1; in BreakableBlockComment()
306 IndentAtLineBreak = in BreakableBlockComment()
307 std::min<int>(IndentAtLineBreak, std::max(0, StartOfLineColumn[i])); in BreakableBlockComment()
309 IndentAtLineBreak = std::max<unsigned>(IndentAtLineBreak, Decoration.size()); in BreakableBlockComment()
311 llvm::dbgs() << "IndentAtLineBreak " << IndentAtLineBreak << "\n"; in BreakableBlockComment()
392 assert(IndentAtLineBreak >= Decoration.size()); in insertBreak()
395 IndentLevel, IndentAtLineBreak - Decoration.size()); in insertBreak()
449 return IndentAtLineBreak; in getContentStartColumn()
DBreakableToken.h232 unsigned IndentAtLineBreak; variable