HomeSort by: relevance | last modified time | path
    Searched refs:CanBreakBefore (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Format/
FormatToken.cpp 205 while (ItemEnd->Next && !ItemEnd->Next->CanBreakBefore)
ContinuationIndenter.cpp 40 // stored in T.CanBreakBefore. Braces, array initializers and text proto
92 if (End->Next->CanBreakBefore)
281 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
332 if (Style.BraceWrapping.BeforeLambdaBody && Current.CanBreakBefore &&
431 State.Stack.back().BreakBeforeParameter && Current.CanBreakBefore)
446 // Using CanBreakBefore here and below takes care of the decision whether the
449 if (Previous.is(TT_BinaryOperator) && Current.CanBreakBefore) {
470 } else if (Current.is(TT_BinaryOperator) && Current.CanBreakBefore &&
870 if (Current.is(TT_BinaryOperator) && Current.CanBreakBefore)
1527 (Tok->CanBreakBefore && Tok->NewlinesBefore > 0))
    [all...]
FormatToken.h 213 CanBreakBefore(false), ClosesTemplateDeclaration(false),
257 unsigned CanBreakBefore : 1;
UnwrappedLineFormatter.cpp 625 Tok->CanBreakBefore = true;
741 B.First->CanBreakBefore = true;
TokenAnnotator.cpp 2340 Line.First->CanBreakBefore = Line.First->MustBreakBefore;
2519 Current->CanBreakBefore =
2520 Current->MustBreakBefore || canBreakBefore(Line, *Current);
2540 // FIXME: Only calculate this if CanBreakBefore is true once static
2584 if (Current->CanBreakBefore ||
3810 bool TokenAnnotator::canBreakBefore(const AnnotatedLine &Line,
4114 << " C=" << Tok->CanBreakBefore

Completed in 135 milliseconds