Lines Matching refs:child

134 	man->last = man->last->child;  in man_validate()
138 man->last = man->last->child; in man_validate()
303 if (n->child == NULL) in post_OP()
305 else if (n->child->next != NULL && n->child->next->next != NULL) { in post_OP()
306 n = n->child->next->next; in post_OP()
318 nc = n->child; in post_SH()
343 if (nc->tok == MAN_PP && nc->body->child != NULL) { in post_SH()
373 if (n->type == ROFFT_HEAD && n->child == NULL) in post_UR()
383 if (n->type == ROFFT_BODY && n->child == NULL) in check_part()
394 if (n->body->child == NULL) in check_par()
398 if (n->child != NULL && in check_par()
399 (n->child->tok == ROFF_sp || n->child->tok == ROFF_br)) { in check_par()
401 n->child->line, n->child->pos, in check_par()
402 "%s after %s", roff_name[n->child->tok], in check_par()
404 roff_node_delete(man, n->child); in check_par()
406 if (n->child == NULL) in check_par()
411 if (n->child != NULL) in check_par()
414 roff_name[n->tok], n->child->string, in check_par()
415 n->child->next != NULL ? " ..." : ""); in check_par()
427 if (n->head->child == NULL && n->body->child == NULL) in post_IP()
431 check_tag(n, n->child); in post_IP()
434 if (n->parent->head->child == NULL && n->child == NULL) in post_IP()
452 if (n->type != ROFFT_HEAD || (nt = n->child) == NULL) in post_TP()
466 nt = nt->child; in post_TP()
493 n = n->child; in post_TH()
583 n = n->child; in post_UC()
620 n = n->child; in post_AT()
653 n->child == NULL || in post_in()
654 *n->child->string == '+' || in post_in()
655 *n->child->string == '-') in post_in()
657 mandoc_asprintf(&s, "+%s", n->child->string); in post_in()
658 free(n->child->string); in post_in()
659 n->child->string = s; in post_in()