Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/mandoc/
H A Dmdoc_man.c799 if ((nn = roff_node_next(n)) != NULL) { in post_percent()
801 nnn = nn == NULL ? NULL : roff_node_next(nn); in post_percent()
1002 if (roff_node_next(n->parent) != NULL) in post_bd()
1134 if (roff_node_next(n->parent) != NULL) in post_bl()
1157 if (roff_node_next(n->parent) != NULL) in post_dl()
1260 if ((nn = roff_node_next(n)) != NULL && nn->tok == MDOC_Fa) in post_fa()
1296 ((nn = roff_node_next(n)) != NULL && in post_fl()
H A Dmdoc_html.c613 ((nn = roff_node_next(n)) != NULL && in mdoc_fl_pre()
1043 (nn = roff_node_next(n)) != NULL && in mdoc_fa_pre()
1493 ((nn = roff_node_next(n)) == NULL || nn->tok != MDOC__A)) in mdoc__x_pre()
1552 (nn = roff_node_next(n)) != NULL && nn->tok == MDOC__A && in mdoc__x_post()
1553 ((nn = roff_node_next(nn)) == NULL || nn->tok != MDOC__A) && in mdoc__x_post()
1563 print_text(h, roff_node_next(n) ? "," : "."); in mdoc__x_post()
H A Dmdoc_term.c1043 ((nn = roff_node_next(n)) != NULL && in termp_fl_pre()
1057 ((nn = roff_node_next(n)) == NULL || nn->tok != MDOC__A)) in termp__a_pre()
1414 (nn = roff_node_next(n)) != NULL && in termp_fa_pre()
1838 (nn = roff_node_next(n)) != NULL && nn->tok == MDOC__A && in termp____post()
1839 ((nn = roff_node_next(nn)) == NULL || nn->tok != MDOC__A) && in termp____post()
1849 if (roff_node_next(n) == NULL) { in termp____post()
H A Dman_html.c254 if (list_continues(n, roff_node_next(n)) == '\0') { in print_man_node()
453 list_type = list_continues(nn, roff_node_next(nn)); in man_IP_pre()
H A Dmdoc_markdown.c804 if ((nn = roff_node_next(n)) != NULL) { in md_post_pc()
1072 if ((nn = roff_node_next(n)) != NULL && nn->tok == MDOC_Fa) in md_post_Fa()
1097 if (n->child == NULL && (nn = roff_node_next(n)) != NULL && in md_post_Fl()
H A Droff.h558 struct roff_node *roff_node_next(struct roff_node *);
H A Dmdoc_validate.c1979 nchild = roff_node_next(nchild); in post_bl()
H A Droff.c1172 roff_node_next(struct roff_node *n) in roff_node_next() function