Lines Matching refs:nchild
1977 struct roff_node *nchild, *nnext; /* of the Bl body */ in post_bl() local
2007 nchild = mdoc->last; in post_bl()
2009 if (nchild == mdoc->last) in post_bl()
2010 nchild = roff_node_child(nbody); in post_bl()
2011 if (nchild == NULL) { in post_bl()
2017 if (nchild->tok == MDOC_It) { in post_bl()
2043 while (nchild != NULL) { in post_bl()
2044 if (nchild->tok == MDOC_It) { in post_bl()
2045 nchild = roff_node_next(nchild); in post_bl()
2048 nnext = nchild->next; in post_bl()
2049 mdoc->last = nchild->prev; in post_bl()
2051 roff_block_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
2052 roff_head_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
2054 roff_body_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
2055 while (nchild->tok != MDOC_It) { in post_bl()
2056 roff_node_relink(mdoc, nchild); in post_bl()
2059 nchild = nnext; in post_bl()
2060 nnext = nchild->next; in post_bl()
2070 for (nchild = nbody->child; nchild != NULL; nchild = nchild->next) { in post_bl()
2071 if (nchild->tok != MDOC_It) in post_bl()
2073 if ((nnext = nchild->head->child) == NULL) in post_bl()