Lines Matching refs:Line

49   AnnotatedLine(const UnwrappedLine &Line)  in AnnotatedLine()  argument
50 : First(Line.Tokens.front().Tok), Type(LT_Other), Level(Line.Level), in AnnotatedLine()
51 PPLevel(Line.PPLevel), in AnnotatedLine()
52 MatchingOpeningBlockLineIndex(Line.MatchingOpeningBlockLineIndex), in AnnotatedLine()
53 MatchingClosingBlockLineIndex(Line.MatchingClosingBlockLineIndex), in AnnotatedLine()
54 InPPDirective(Line.InPPDirective), in AnnotatedLine()
55 InPragmaDirective(Line.InPragmaDirective), in AnnotatedLine()
56 InMacroBody(Line.InMacroBody), in AnnotatedLine()
57 MustBeDeclaration(Line.MustBeDeclaration), MightBeFunctionDecl(false), in AnnotatedLine()
60 ReturnTypeWrapped(false), IsContinuation(Line.IsContinuation), in AnnotatedLine()
61 FirstStartColumn(Line.FirstStartColumn) { in AnnotatedLine()
62 assert(!Line.Tokens.empty()); in AnnotatedLine()
69 addChildren(Line.Tokens.front(), Current); in AnnotatedLine()
70 for (const UnwrappedLineNode &Node : llvm::drop_begin(Line.Tokens)) { in AnnotatedLine()
226 void annotate(AnnotatedLine &Line);
227 void calculateFormattingInformation(AnnotatedLine &Line) const;
231 unsigned splitPenalty(const AnnotatedLine &Line, const FormatToken &Tok,
236 bool spaceRequiredBetween(const AnnotatedLine &Line, const FormatToken &Left,
239 bool spaceRequiredBefore(const AnnotatedLine &Line,
242 bool mustBreakBefore(const AnnotatedLine &Line,
245 bool canBreakBefore(const AnnotatedLine &Line,
248 bool mustBreakForReturnType(const AnnotatedLine &Line) const;
250 void printDebugInfo(const AnnotatedLine &Line) const;
252 void calculateUnbreakableTailLengths(AnnotatedLine &Line) const;
254 void calculateArrayInitializerColumnList(AnnotatedLine &Line) const;
256 FormatToken *calculateInitializerColumnList(AnnotatedLine &Line,