reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Format/UnwrappedLineFormatter.cpp
  838     LineState State = Indenter->getInitialState(FirstIndent, FirstStartColumn,
  842           Indenter->mustBreak(State) ||
  843           (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
  846       Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
  865         Indenter->getInitialState(FirstIndent, FirstStartColumn, &Line, DryRun);
  868       Indenter->addTokenToState(
  889         Indenter->getInitialState(FirstIndent, FirstStartColumn, &Line, DryRun);
 1008     if (NewLine && !Indenter->canBreak(PreviousNode->State))
 1010     if (!NewLine && Indenter->mustBreak(PreviousNode->State))
 1018     Penalty += Indenter->addTokenToState(Node->State, NewLine, true);
 1036       Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false);