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