Lines Matching defs:nn
354 const struct roff_node *nn;
359 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i++) {
389 print_text(h, nn->string);
459 struct roff_node *nn;
464 nn = n->type == ROFFT_BLOCK ? n : n->parent;
465 list_type = list_continues(roff_node_prev(nn), nn);
468 list_type = list_continues(nn, roff_node_next(nn));
518 nn = n->child;
519 while (nn != NULL && (NODE_LINE & nn->flags) == 0)
520 nn = nn->next;
521 while (nn != NULL) {
522 print_man_node(man, nn, h);
523 nn = nn->next;