Home
last modified time | relevance | path

Searched refs:textual_rows (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/kyua/utils/text/
H A Dtable.cpp173 std::vector< text::table_row >& textual_rows) in refill_cell()
178 if (textual_rows.size() < rows.size()) in refill_cell()
179 textual_rows.resize(rows.size(), text::table_row(row.size())); in refill_cell()
185 textual_rows[i][j] = pad_cell(rows[i], widths[j], is_last); in refill_cell()
187 if (textual_rows[i][j].empty()) in refill_cell()
188 textual_rows[i][j] = pad_cell("", widths[j], is_last); in refill_cell()
210 std::vector< text::table_row > textual_rows(1, text::table_row(row.size())); in format_row() local
214 textual_rows[0][column] = pad_cell(row[column], widths[column], in format_row()
217 refill_cell(row, widths, column, textual_rows); in format_row()
222 iter = textual_rows.begin(); iter != textual_rows.end(); ++iter) { in format_row()