Lines Matching refs:pest

1134 	      struct pentry_state *pest)  in print_header()  argument
1137 const char *fstr = filter_doc (tstr, ARGP_KEY_HELP_HEADER, argp, pest->state); in print_header()
1143 if (pest->hhstate->prev_entry) in print_header()
1145 __argp_fmtstream_putc (pest->stream, '\n'); in print_header()
1146 indent_to (pest->stream, uparams.header_col); in print_header()
1147 __argp_fmtstream_set_lmargin (pest->stream, uparams.header_col); in print_header()
1148 __argp_fmtstream_set_wmargin (pest->stream, uparams.header_col); in print_header()
1149 __argp_fmtstream_puts (pest->stream, fstr); in print_header()
1150 __argp_fmtstream_set_lmargin (pest->stream, 0); in print_header()
1151 __argp_fmtstream_putc (pest->stream, '\n'); in print_header()
1154 pest->hhstate->sep_groups = 1; /* Separate subsequent groups. */ in print_header()
1176 comma (unsigned col, struct pentry_state *pest) in comma() argument
1178 if (pest->first) in comma()
1180 const struct hol_entry *pe = pest->hhstate->prev_entry; in comma()
1181 const struct hol_cluster *cl = pest->entry->cluster; in comma()
1183 if (pest->hhstate->sep_groups && pe && pest->entry->group != pe->group) in comma()
1184 __argp_fmtstream_putc (pest->stream, '\n'); in comma()
1195 int old_wm = __argp_fmtstream_wmargin (pest->stream); in comma()
1196 print_header (cl->header, cl->argp, pest); in comma()
1197 __argp_fmtstream_set_wmargin (pest->stream, old_wm); in comma()
1200 pest->first = 0; in comma()
1203 __argp_fmtstream_puts (pest->stream, ", "); in comma()
1205 indent_to (pest->stream, col); in comma()
1222 struct pentry_state pest = { entry, stream, hhstate, 1, state }; in hol_entry_help() local
1240 comma (uparams.short_opt_col, &pest); in hol_entry_help()
1261 comma (uparams.doc_opt_col, &pest); in hol_entry_help()
1278 comma (uparams.long_opt_col, &pest); in hol_entry_help()
1288 if (pest.first) in hol_entry_help()
1293 print_header (real->doc, entry->argp, &pest); in hol_entry_help()