Lines Matching defs:nn
345 const struct roff_node *nn;
350 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i++) {
380 print_text(h, nn->string);
450 struct roff_node *nn;
455 nn = n->type == ROFFT_BLOCK ? n : n->parent;
456 list_type = list_continues(roff_node_prev(nn), nn);
459 list_type = list_continues(nn, roff_node_next(nn));
509 nn = n->child;
510 while (nn != NULL && (NODE_LINE & nn->flags) == 0)
511 nn = nn->next;
512 while (nn != NULL) {
513 print_man_node(man, nn, h);
514 nn = nn->next;