Lines Matching full:column
91 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
96 // bin-packed. Add a severe penalty to this so that column layouts are
103 unsigned Column = 0;
112 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item];
113 ++Column;
118 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
119 Column = 0;
157 // Column format doesn't really make sense if we don't align after brackets.
167 // trailing comments which are otherwise ignored for column alignment.
214 // Don't use column layout for nested lists, lists with few elements and in
231 unsigned Column = 0;
234 if (MustBreakBeforeItem[i] || Column == Columns) {
236 Column = 0;
238 if (Column == Columns - 1)
241 (Column == Columns - 1) ? EndOfLineItemLength[i] : ItemLengths[i];
242 Format.ColumnSizes[Column] = std::max(Format.ColumnSizes[Column], Length);
243 MinSizeInColumn[Column] = std::min(MinSizeInColumn[Column], Length);
244 ++Column;
256 // element in a column exceeds a threshold to avoid excessive spaces.
265 // Ignore layouts that are bound to violate the column limit.