Symbol: tbl_node
usr.bin/mandoc/roff.c
1029
roff_addtbl(struct roff_man *man, int line, struct tbl_node *tbl)
usr.bin/mandoc/roff.c
112
struct tbl_node *first_tbl; /* first table parsed */
usr.bin/mandoc/roff.c
113
struct tbl_node *last_tbl; /* last table parsed */
usr.bin/mandoc/roff.c
114
struct tbl_node *tbl; /* current table being parsed */
usr.bin/mandoc/roff.c
174
static void roff_addtbl(struct roff_man *, int, struct tbl_node *);
usr.bin/mandoc/tbl.c
105
tbl_free(struct tbl_node *tbl)
usr.bin/mandoc/tbl.c
107
struct tbl_node *old_tbl;
usr.bin/mandoc/tbl.c
140
tbl_restart(int line, int pos, struct tbl_node *tbl)
usr.bin/mandoc/tbl.c
151
tbl_span(struct tbl_node *tbl)
usr.bin/mandoc/tbl.c
163
tbl_end(struct tbl_node *tbl, int still_open)
usr.bin/mandoc/tbl.c
35
tbl_read(struct tbl_node *tbl, int ln, const char *p, int pos)
usr.bin/mandoc/tbl.c
88
struct tbl_node *
usr.bin/mandoc/tbl.c
89
tbl_alloc(int pos, int line, struct tbl_node *last_tbl)
usr.bin/mandoc/tbl.c
91
struct tbl_node *tbl;
usr.bin/mandoc/tbl_data.c
195
tbl_cdata(struct tbl_node *tbl, int ln, const char *p, int pos)
usr.bin/mandoc/tbl_data.c
238
newspan(struct tbl_node *tbl, int line, struct tbl_row *rp)
usr.bin/mandoc/tbl_data.c
259
tbl_data(struct tbl_node *tbl, int ln, const char *p, int pos)
usr.bin/mandoc/tbl_data.c
34
static void getdata(struct tbl_node *, struct tbl_span *,
usr.bin/mandoc/tbl_data.c
36
static struct tbl_span *newspan(struct tbl_node *, int,
usr.bin/mandoc/tbl_data.c
41
getdata(struct tbl_node *tbl, struct tbl_span *dp,
usr.bin/mandoc/tbl_int.h
31
struct tbl_node *next; /* Next table. */
usr.bin/mandoc/tbl_int.h
43
void tbl_option(struct tbl_node *, int, const char *, int *);
usr.bin/mandoc/tbl_int.h
44
void tbl_layout(struct tbl_node *, int, const char *, int);
usr.bin/mandoc/tbl_int.h
45
void tbl_data(struct tbl_node *, int, const char *, int);
usr.bin/mandoc/tbl_int.h
46
void tbl_cdata(struct tbl_node *, int, const char *, int);
usr.bin/mandoc/tbl_layout.c
211
cell(struct tbl_node *tbl, struct tbl_row *rp,
usr.bin/mandoc/tbl_layout.c
270
tbl_layout(struct tbl_node *tbl, int ln, const char *p, int pos)
usr.bin/mandoc/tbl_layout.c
360
cell_alloc(struct tbl_node *tbl, struct tbl_row *rp, enum tbl_cellt pos)
usr.bin/mandoc/tbl_layout.c
54
static void mods(struct tbl_node *, struct tbl_cell *,
usr.bin/mandoc/tbl_layout.c
56
static void cell(struct tbl_node *, struct tbl_row *,
usr.bin/mandoc/tbl_layout.c
58
static struct tbl_cell *cell_alloc(struct tbl_node *, struct tbl_row *,
usr.bin/mandoc/tbl_layout.c
63
mods(struct tbl_node *tbl, struct tbl_cell *cp,
usr.bin/mandoc/tbl_opts.c
121
tbl_option(struct tbl_node *tbl, int ln, const char *p, int *offs)
usr.bin/mandoc/tbl_opts.c
60
static void arg(struct tbl_node *, int, const char *, int *, int);
usr.bin/mandoc/tbl_opts.c
64
arg(struct tbl_node *tbl, int ln, const char *p, int *pos, int key)
usr.bin/mandoc/tbl_parse.h
22
struct tbl_node;
usr.bin/mandoc/tbl_parse.h
25
struct tbl_node *tbl_alloc(int, int, struct tbl_node *);
usr.bin/mandoc/tbl_parse.h
26
int tbl_end(struct tbl_node *, int);
usr.bin/mandoc/tbl_parse.h
27
void tbl_free(struct tbl_node *);
usr.bin/mandoc/tbl_parse.h
28
void tbl_read(struct tbl_node *, int, const char *, int);
usr.bin/mandoc/tbl_parse.h
29
void tbl_restart(int, int, struct tbl_node *);
usr.bin/mandoc/tbl_parse.h
30
struct tbl_span *tbl_span(struct tbl_node *);