Lines Matching refs:Line
29 // Returns the length of everything up to the first possible line break after
71 const AnnotatedLine *Line,
76 State.Line = Line;
77 State.NextToken = Line->First;
78 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent,
100 // The opening "{" of a braced list has to be on the same line as the first
162 (State.Column + State.Line->Last->TotalLength - Current.TotalLength + 2 >
194 // expression itself as otherwise, the line breaks seem superfluous.
220 // for cases where the entire line does not fit on a single line as a
296 (State.Line->First->is(tok::kw_for) || Current.NestingLevel == 0) &&
332 // disallowing any further line breaks if there is no line break after the
411 // Extra penalty that needs to be added because of the way certain line
419 // The first line break on any NestingLevel causes an extra penalty in order
420 // prefer similar line breaks.
429 // to avoid unnecessary line breaks that just work around this penalty.
474 // method expression, the block should be aligned to the line starting it,
506 State.Column, State.Line->InPPDirective);
546 State.Line->MustBeDeclaration) ||
708 // ^ line up here.
814 // there is a line-break right after the operator.
919 (State.Line->MustBeDeclaration && !Style.BinPackParameters) ||
920 (!State.Line->MustBeDeclaration && !Style.BinPackArguments) ||
928 // into one line and put one per line if they don't.
934 // be a line break within this call.
971 (Current.is(tok::r_brace) && State.NextToken != State.Line->First) ||
1005 // We can only affect layout of the first and the last line, so the penalty
1017 // Don't break multi-line tokens other than block comments. Instead, just
1024 State.Line->Type == LT_ImportStatement)
1044 // This way we avoid breaking code with line directives and unknown
1046 if (State.Line->Type == LT_PreprocessorDirective)
1048 // Exempts unterminated string literals from line breaking. The user will
1049 // likely want to terminate the string before any line breaking is done.
1073 Current, State.Line->Level, StartColumn, Prefix, Postfix,
1074 State.Line->InPPDirective, Encoding, Style));
1083 Current, State.Line->Level, StartColumn, Current.OriginalColumn,
1084 !Current.Previous, State.Line->InPPDirective, Encoding, Style));
1091 Token.reset(new BreakableLineComment(Current, State.Line->Level,
1094 // We don't insert backslashes when breaking line comments.
1117 // The last line's penalty is handled in addNextStateToQueue().
1127 // We can remove extra whitespace instead of breaking the line.
1161 // visible. Line comments already introduce a break.
1177 return Style.ColumnLimit - (State.Line->InPPDirective ? 2 : 0);