Lines Matching refs:NewLine
957 StateNode(const LineState &State, bool NewLine, StateNode *Previous) in StateNode()
958 : State(State), NewLine(NewLine), Previous(Previous) {} in StateNode()
960 bool NewLine; member
1142 formatChildren(State, (*I)->NewLine, /*DryRun=*/false, Penalty); in reconstructPath()
1143 Penalty += Indenter->addTokenToState(State, (*I)->NewLine, false); in reconstructPath()
1146 if ((*I)->NewLine) { in reconstructPath()
1160 bool NewLine, unsigned *Count, QueueType *Queue) { in addNextStateToQueue() argument
1161 if (NewLine && !Indenter->canBreak(PreviousNode->State)) in addNextStateToQueue()
1163 if (!NewLine && Indenter->mustBreak(PreviousNode->State)) in addNextStateToQueue()
1167 StateNode(PreviousNode->State, NewLine, PreviousNode); in addNextStateToQueue()
1168 if (!formatChildren(Node->State, NewLine, /*DryRun=*/true, Penalty)) in addNextStateToQueue()
1171 Penalty += Indenter->addTokenToState(Node->State, NewLine, true); in addNextStateToQueue()
1197 bool formatChildren(LineState &State, bool NewLine, bool DryRun, in formatChildren() argument
1207 if (NewLine) { in formatChildren()