Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/mandoc/
H A Dtbl_layout.c255 } else if (c == TBL_CELL_DOWN && rp == tbl->first_row) in cell()
293 if (tbl->first_row == NULL) { in tbl_layout()
294 tbl->first_row = tbl->last_row = in tbl_layout()
297 if (tbl->first_row->first == NULL) { in tbl_layout()
300 cell_alloc(tbl, tbl->first_row, in tbl_layout()
302 if (tbl->opts.lvert < tbl->first_row->vert) in tbl_layout()
303 tbl->opts.lvert = tbl->first_row->vert; in tbl_layout()
312 for (rp = tbl->first_row; rp; rp = rp->next) { in tbl_layout()
346 tbl->first_row = rp; in tbl_layout()
H A Dtbl.c116 while ((rp = tbl->first_row) != NULL) { in tbl_free()
117 tbl->first_row = rp->next; in tbl_free()
H A Dtbl_int.h32 struct tbl_row *first_row; /* First layout row. */ member
H A Dtbl_data.c270 rp = sp == NULL ? tbl->first_row : in tbl_data()