Home | History | Annotate | Download | only in roken

Lines Matching defs:rows

52     struct column_entry *rows;
112 free (c->rows[j].data);
113 free (c->rows);
147 col->rows = NULL;
173 tmp = realloc(table->columns[c]->rows,
174 max_rows * sizeof(table->columns[c]->rows[0]));
177 table->columns[c]->rows = tmp;
196 column->width = max (column->width, (int) strlen (column->rows[i].data));
297 tmp = realloc (c->rows, (c->num_rows + 1) * sizeof (*tmp));
302 c->rows = tmp;
303 c->rows[c->num_rows++] = row;
406 /* are there any more rows left? */
438 p = rk_strpoolprintf(p, "%*s", w, c->rows[j].data);
458 /* are there any more rows left? */
482 c->rows[j].data);