Lines Matching refs:nchild
1911 struct roff_node *nchild, *nnext; /* of the Bl body */ in post_bl() local
1941 nchild = mdoc->last; in post_bl()
1943 if (nchild == mdoc->last) in post_bl()
1944 nchild = roff_node_child(nbody); in post_bl()
1945 if (nchild == NULL) { in post_bl()
1951 if (nchild->tok == MDOC_It) { in post_bl()
1977 while (nchild != NULL) { in post_bl()
1978 if (nchild->tok == MDOC_It) { in post_bl()
1979 nchild = roff_node_next(nchild); in post_bl()
1982 nnext = nchild->next; in post_bl()
1983 mdoc->last = nchild->prev; in post_bl()
1985 roff_block_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
1986 roff_head_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
1988 roff_body_alloc(mdoc, nchild->line, nchild->pos, MDOC_It); in post_bl()
1989 while (nchild->tok != MDOC_It) { in post_bl()
1990 roff_node_relink(mdoc, nchild); in post_bl()
1993 nchild = nnext; in post_bl()
1994 nnext = nchild->next; in post_bl()
2004 for (nchild = nbody->child; nchild != NULL; nchild = nchild->next) { in post_bl()
2005 if (nchild->tok != MDOC_It) in post_bl()
2007 if ((nnext = nchild->head->child) == NULL) in post_bl()