Lines Matching refs:Previous

498       const FormatToken *Previous = PreviousLine->Last;  in tryFitMultipleLinesInOne()  local
499 if (Previous) { in tryFitMultipleLinesInOne()
500 if (Previous->is(tok::comment)) in tryFitMultipleLinesInOne()
501 Previous = Previous->getPreviousNonComment(); in tryFitMultipleLinesInOne()
502 if (Previous) { in tryFitMultipleLinesInOne()
503 if (Previous->is(tok::greater) && !PreviousLine->InPPDirective) in tryFitMultipleLinesInOne()
505 if (Previous->is(tok::identifier)) { in tryFitMultipleLinesInOne()
507 Previous->getPreviousNonComment(); in tryFitMultipleLinesInOne()
931 assert(!B.First->Previous); in join()
935 B.First->Previous = A.Last; in join()
953 if (Tok->is(tok::hash) && !Tok->Previous && Tok->Next && in markFinalized()
1033 FormatToken &Previous = *State.NextToken->Previous; in formatChildren() local
1034 if (Previous.Children.size() == 0 || (!HasLBrace && !LBrace->MacroParent)) { in formatChildren()
1040 if (NewLine || Previous.MacroParent) { in formatChildren()
1044 P.Indent - Previous.Children[0]->Level * Style.IndentWidth; in formatChildren()
1046 BlockFormatter->format(Previous.Children, DryRun, AdditionalIndent, in formatChildren()
1051 if (Previous.Children[0]->First->MustBreakBefore) in formatChildren()
1055 if (Previous.is(tok::comment)) in formatChildren()
1059 if (Previous.Children.size() > 1) in formatChildren()
1062 const AnnotatedLine *Child = Previous.Children[0]; in formatChildren()
1190 StateNode(const LineState &State, bool NewLine, StateNode *Previous) in StateNode()
1191 : State(State), NewLine(NewLine), Previous(Previous) {} in StateNode()
1194 StateNode *Previous; member
1307 while (Best->Previous) { in reconstructPath()
1309 Best = Best->Previous; in reconstructPath()
1317 printLineState(Node->Previous->State); in reconstructPath()
1320 << Node->Previous->State.NextToken->Tok.getName() in reconstructPath()