Lines Matching refs:nn
341 const struct roff_node *nn; in man_alt_pre() local
346 for (i = 0, nn = n->child; nn != NULL; nn = nn->next, i++) { in man_alt_pre()
376 print_text(h, nn->string); in man_alt_pre()
444 struct roff_node *nn; in man_IP_pre() local
449 nn = n->type == ROFFT_BLOCK ? n : n->parent; in man_IP_pre()
450 list_type = list_continues(roff_node_prev(nn), nn); in man_IP_pre()
453 list_type = list_continues(nn, roff_node_next(nn)); in man_IP_pre()
503 nn = n->child; in man_IP_pre()
504 while (nn != NULL && (NODE_LINE & nn->flags) == 0) in man_IP_pre()
505 nn = nn->next; in man_IP_pre()
506 while (nn != NULL) { in man_IP_pre()
507 print_man_node(man, nn, h); in man_IP_pre()
508 nn = nn->next; in man_IP_pre()