Lines Matching refs:col
8642 inline friend std::ostream& operator << (std::ostream& os, Column const& col) {
8644 for (auto line : col) {
8689 for (auto const& col : m_columns)
8690 m_iterators.push_back(col.end());
8705 for (auto const& col : m_columns)
8706 m_iterators.push_back(col.begin());
8721 std::string col = *m_iterators[i];
8722 row += padding + col;
8723 if (col.size() < width)
8724 padding = std::string(width - col.size(), ' ');
8751 auto operator += (Column const& col) -> Columns& {
8752 m_columns.push_back(col);
8755 auto operator + (Column const& col) -> Columns {
8757 combined += col;
16741 for (auto col : cols) {
16742 std::string value = col.rows[row];
16743 if (col.label.empty()) {
16751 stream << Colour(col.colour)
16752 << value << ' ' << col.label;