Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DBreakableToken.cpp288 IndentAtLineBreak = StartOfLineColumn[0] + 1; in BreakableBlockComment()
313 IndentAtLineBreak = in BreakableBlockComment()
314 std::min<int>(IndentAtLineBreak, std::max(0, StartOfLineColumn[i])); in BreakableBlockComment()
316 IndentAtLineBreak = std::max<unsigned>(IndentAtLineBreak, Decoration.size()); in BreakableBlockComment()
318 llvm::dbgs() << "IndentAtLineBreak " << IndentAtLineBreak << "\n"; in BreakableBlockComment()
399 assert(IndentAtLineBreak >= Decoration.size()); in insertBreak()
402 IndentLevel, IndentAtLineBreak - Decoration.size()); in insertBreak()
455 return IndentAtLineBreak; in getContentStartColumn()
DBreakableToken.h232 unsigned IndentAtLineBreak; variable