Home | History | Annotate | Download | only in Format

Lines Matching full:columns

93   // Find the best ColumnFormat, i.e. the best number of columns to use.
118 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
150 // In C++11 braced list style, we should not format in columns unless they
224 for (unsigned Columns = 1; Columns <= MaxItems; ++Columns) {
226 Format.Columns = Columns;
227 Format.ColumnSizes.resize(Columns);
228 MinSizeInColumn.assign(Columns, UINT_MAX);
234 if (MustBreakBeforeItem[i] || Column == Columns) {
238 if (Column == Columns - 1)
241 (Column == Columns - 1) ? EndOfLineItemLength[i] : ItemLengths[i];
250 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces.
252 for (unsigned i = 0; i < Columns; ++i)
258 for (unsigned i = 0; i < Columns - 1; ++i)