Home | History | Annotate | Download | only in Format

Lines Matching defs:Column

585     // If we already exceed the column limit, we set 'Limit' to 0. The different
723 // We merge empty blocks even if the line exceeds the column limit.
760 /// Returns the modified column limit for \p I if it is inside a macro and
1233 // If the child line exceeds the column limit, we wouldn't want to merge it.
1236 Previous.Children[0]->Last->TotalLength + State.Column + 2 >
1244 /*StartOfTokenColumn=*/State.Column, State.Line->InPPDirective);
1246 Penalty += format(*Previous.Children[0], State.Column + 1, DryRun);
1248 Column += 1 + Previous.Children[0]->Last->TotalLength;
1271 Column(0), TrailingWhitespace(0), Lex(Lex), SourceMgr(SourceMgr),
1498 // FIXME: Increment Column and set OriginalColumn.
1533 Column = 0;
1538 Column = 0;
1541 ++Column;
1544 Column += Style.TabWidth - Column % Style.TabWidth;
1547 ++Column;
1554 ++Column;
1574 Column = 0;
1581 FormatTok->OriginalColumn = Column;
1585 // FIXME: Add the trimmed whitespace to Column.
1604 // FIXME: ColumnWidth actually depends on the start column, we need to
1607 encoding::columnWidthWithTabs(Text, Column, Style.TabWidth, Encoding);
1608 Column += FormatTok->ColumnWidth;
1611 // FIXME: ColumnWidth actually depends on the start column, we need to
1614 Text.substr(0, FirstNewlinePos), Column, Style.TabWidth, Encoding);
1616 // The last line of the token always starts in column 0.
1621 Column = FormatTok->LastLineColumnWidth;
1634 unsigned Column;