Lines Matching refs:Line
39 AnnotatedLine(const UnwrappedLine &Line) in AnnotatedLine() argument
40 : First(Line.Tokens.front().Tok), Level(Line.Level), in AnnotatedLine()
41 PPLevel(Line.PPLevel), in AnnotatedLine()
42 MatchingOpeningBlockLineIndex(Line.MatchingOpeningBlockLineIndex), in AnnotatedLine()
43 MatchingClosingBlockLineIndex(Line.MatchingClosingBlockLineIndex), in AnnotatedLine()
44 InPPDirective(Line.InPPDirective), in AnnotatedLine()
45 InPragmaDirective(Line.InPragmaDirective), in AnnotatedLine()
46 InMacroBody(Line.InMacroBody), in AnnotatedLine()
47 MustBeDeclaration(Line.MustBeDeclaration), MightBeFunctionDecl(false), in AnnotatedLine()
50 ReturnTypeWrapped(false), IsContinuation(Line.IsContinuation), in AnnotatedLine()
51 FirstStartColumn(Line.FirstStartColumn) { in AnnotatedLine()
52 assert(!Line.Tokens.empty()); in AnnotatedLine()
59 for (const UnwrappedLineNode &Node : llvm::drop_begin(Line.Tokens)) { in AnnotatedLine()
181 void annotate(AnnotatedLine &Line) const;
182 void calculateFormattingInformation(AnnotatedLine &Line) const;
186 unsigned splitPenalty(const AnnotatedLine &Line, const FormatToken &Tok,
191 bool spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left,
194 bool spaceRequiredBefore(const AnnotatedLine &Line,
197 bool mustBreakBefore(const AnnotatedLine &Line,
200 bool canBreakBefore(const AnnotatedLine &Line,
203 bool mustBreakForReturnType(const AnnotatedLine &Line) const;
205 void printDebugInfo(const AnnotatedLine &Line) const;
207 void calculateUnbreakableTailLengths(AnnotatedLine &Line) const;
209 void calculateArrayInitializerColumnList(AnnotatedLine &Line) const;
211 FormatToken *calculateInitializerColumnList(AnnotatedLine &Line,