Lines Matching refs:column
42 // Tab-terminated cells in contiguous lines constitute a column. The
43 // Writer inserts padding as needed to make all cells in a column have
46 // tabwidth must be specified. Column cells must be tab-terminated, not
48 // forms a cell but that cell is not part of an aligned column.
56 // the b and c are in distinct columns (the b column is not contiguous
57 // all the way). The d and e are not in a column at all (there's no
58 // terminating tab, nor would the column be contiguous).
107 widths []int // list of column widths in runes - re-used during formatting
284 // indicate column break
332 column := len(b.widths)
336 if column >= len(line)-1 {
339 // cell exists in this column => this line
344 // to a column)
350 // column block begin
351 width := b.minwidth // minimal column width
352 discardable := true // true if all cells in this column are empty and "soft"
355 if column >= len(line)-1 {
358 // cell exists in this column
359 c := line[column]
369 // column block end
376 // format and print all columns to the right of this column
377 // (we know the widths of this column and all columns to the left)