Lines Matching defs:nchild
1956 struct roff_node *nchild, *nnext; /* of the Bl body */
1980 * The next non-transparent node is kept in nchild.
1986 nchild = mdoc->last;
1988 if (nchild == mdoc->last)
1989 nchild = roff_node_child(nbody);
1990 if (nchild == NULL) {
1996 if (nchild->tok == MDOC_It) {
2022 while (nchild != NULL) {
2023 if (nchild->tok == MDOC_It) {
2024 nchild = roff_node_next(nchild);
2027 nnext = nchild->next;
2028 mdoc->last = nchild->prev;
2030 roff_block_alloc(mdoc, nchild->line, nchild->pos, MDOC_It);
2031 roff_head_alloc(mdoc, nchild->line, nchild->pos, MDOC_It);
2033 roff_body_alloc(mdoc, nchild->line, nchild->pos, MDOC_It);
2034 while (nchild->tok != MDOC_It) {
2035 roff_node_relink(mdoc, nchild);
2038 nchild = nnext;
2039 nnext = nchild->next;
2049 for (nchild = nbody->child; nchild != NULL; nchild = nchild->next) {
2050 if (nchild->tok != MDOC_It)
2052 if ((nnext = nchild->head->child) == NULL)