Lines Matching refs:column
172 const text::table_row::size_type column, in refill_cell() argument
175 const std::vector< std::string > rows = text::refill(row[column], in refill_cell()
176 widths[column]); in refill_cell()
184 if (j == column) in refill_cell()
212 for (text::table_row::size_type column = 0; column < row.size(); ++column) { in format_row() local
213 if (widths[column] > row[column].length()) in format_row()
214 textual_rows[0][column] = pad_cell(row[column], widths[column], in format_row()
215 column == row.size() - 1); in format_row()
217 refill_cell(row, widths, column, textual_rows); in format_row()
262 text::table::column_width(const widths_vector::size_type column) const in column_width()
264 PRE(column < _column_widths.size()); in column_width()
265 return _column_widths[column]; in column_width()
357 text::table_formatter::set_column_width(const table_row::size_type column, in set_column_width() argument
363 if (i != column) in set_column_width()
370 if (_column_widths.size() < column + 1) in set_column_width()
371 _column_widths.resize(column + 1, width_auto); in set_column_width()
372 _column_widths[column] = width; in set_column_width()