Home | History | Annotate | Download | only in Format

Lines Matching refs:Indenter

475   LineFormatter(ContinuationIndenter *Indenter, WhitespaceManager *Whitespaces,
478 : Indenter(Indenter), Whitespaces(Whitespaces), Style(Style),
563 ContinuationIndenter *Indenter;
574 NoColumnLimitLineFormatter(ContinuationIndenter *Indenter,
578 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
586 Indenter->getInitialState(FirstIndent, &Line, /*DryRun=*/false);
589 Indenter->mustBreak(State) ||
590 (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
593 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
602 NoLineBreakFormatter(ContinuationIndenter *Indenter,
605 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
611 LineState State = Indenter->getInitialState(FirstIndent, &Line, DryRun);
614 Indenter->addTokenToState(State, /*Newline=*/false, DryRun);
623 OptimizingLineFormatter(ContinuationIndenter *Indenter,
627 : LineFormatter(Indenter, Whitespaces, Style, BlockFormatter) {}
633 LineState State = Indenter->getInitialState(FirstIndent, &Line, DryRun);
749 if (NewLine && !Indenter->canBreak(PreviousNode->State))
751 if (!NewLine && Indenter->mustBreak(PreviousNode->State))
759 Penalty += Indenter->addTokenToState(Node->State, NewLine, true);
778 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);
855 NoColumnLimitLineFormatter(Indenter, Whitespaces, Style, this)
858 Penalty += NoLineBreakFormatter(Indenter, Whitespaces, Style, this)
861 Penalty += OptimizingLineFormatter(Indenter, Whitespaces, Style, this)