Searched refs:column (Results 1 – 12 of 12) sorted by relevance
/coreutils/src/ |
D | fold.c | 92 adjust_column (size_t column, char c) in adjust_column() argument 98 if (column > 0) in adjust_column() 99 column--; in adjust_column() 102 column = 0; in adjust_column() 104 column += TAB_WIDTH - column % TAB_WIDTH; in adjust_column() 106 column++; in adjust_column() 109 column++; in adjust_column() 110 return column; in adjust_column() 122 size_t column = 0; /* Screen column where next char will go. */ in fold_file() local 153 column = offset_out = 0; in fold_file() [all …]
|
D | unexpand.c | 134 uintmax_t column = 0; in unexpand() local 169 next_tab_column = get_next_tab_column (column, &tab_index, in unexpand() 177 if (next_tab_column < column) in unexpand() 182 column = next_tab_column; in unexpand() 189 column++; in unexpand() 191 if (! (prev_blank && column == next_tab_column)) in unexpand() 195 if (column == next_tab_column) in unexpand() 215 column -= !!column; in unexpand() 216 next_tab_column = column; in unexpand() 221 column++; in unexpand() [all …]
|
D | expand.c | 115 uintmax_t column = 0; in expand() local 136 next_tab_column = get_next_tab_column (column, &tab_index, in expand() 140 next_tab_column = column + 1; in expand() 142 if (next_tab_column < column) in expand() 145 while (++column < next_tab_column) in expand() 155 column -= !!column; in expand() 160 column++; in expand() 161 if (!column) in expand()
|
D | expand-common.c | 275 get_next_tab_column (const uintmax_t column, size_t *tab_index, in get_next_tab_column() argument 282 return column + (tab_size - column % tab_size); in get_next_tab_column() 289 if (column < tab) in get_next_tab_column() 295 return column + (extend_size - column % extend_size); in get_next_tab_column() 302 return column + (increment_size - ((column - end_tab) % increment_size)); in get_next_tab_column()
|
D | expand-common.h | 39 get_next_tab_column (const uintmax_t column, size_t *tab_index,
|
/coreutils/tests/pr/ |
D | o3a3Snl24f-tn | 8 7.7 3456789 12345:--: 8.8 3 Columns d:--: 9.9 With column
|
D | o3b3Snl24f-tn | 14 9.9 With column:--: 23.3 :--: 37.7
|
D | W35ml24f-lm-lo | 14 9<<< >>> 9::: With column
|
/coreutils/ |
D | README-release | 101 sed 's/^/ /' | column -c 70 | expand
|
D | HACKING | 284 " extend past the 80-column limit"));
|
D | NEWS | 211 line with the NUL character, consistent with NUL column delimiters in 558 pr again adjusts tabs in input, to maintain alignment in multi column output. 621 This is useful to more compactly organize the default vertical column output. 1977 df --total now prints '-' into the target column (mount point) of the 1979 can be in any column. If there is no source column, then df prints 1980 'total' in the target column. 5219 When given -l and similar options, ls now adjusts the output column
|
/coreutils/doc/ |
D | coreutils.texi | 2275 @cindex column to wrap data after 2562 @var{file}s, printing all in parallel, one per column. Synopsis: 2591 column output no line truncation occurs by default. Use @option{-W} option to 2615 @item -@var{column} 2616 @itemx --columns=@var{column} 2617 @opindex -@var{column} 2620 With each single @var{file}, produce @var{column} columns of output 2622 column width is automatically decreased as @var{column} increases; unless 2626 and @option{-i} are on for multiple text-column output. Together with 2627 @option{-J} option column alignment and line truncation is turned off. [all …]
|