Home | History | Annotate | Download | only in Format

Lines Matching refs:Columns

77   // Find the best ColumnFormat, i.e. the best number of columns to use.
102 if (Column == Format->Columns || State.NextToken->MustBreakBefore) {
134 // In C++11 braced list style, we should not format in columns unless we allow
193 for (unsigned Columns = 1; Columns <= Style.ColumnLimit / 3; ++Columns) {
195 Format.Columns = Columns;
196 Format.ColumnSizes.resize(Columns);
202 if (MustBreakBeforeItem[i] || Column == Columns) {
206 if (Column == Columns - 1)
209 (Column == Columns - 1) ? EndOfLineItemLength[i] : ItemLengths[i];
217 Format.TotalWidth = Columns - 1; // Width of the N-1 spaces.
218 for (unsigned i = 0; i < Columns; ++i) {