Lines Matching defs:last_nonopt
249 `last_nonopt' is the index after the last of them. */
252 static int last_nonopt;
295 One subsequence is elements [first_nonopt,last_nonopt)
297 The other is elements [last_nonopt,optind), which contains all
300 `first_nonopt' and `last_nonopt' are relocated so that they describe
312 int middle = last_nonopt;
383 first_nonopt += (optind - last_nonopt);
384 last_nonopt = optind;
402 first_nonopt = last_nonopt = optind;
550 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
552 if (last_nonopt > optind)
553 last_nonopt = optind;
562 if (first_nonopt != last_nonopt && last_nonopt != optind)
564 else if (last_nonopt != optind)
572 last_nonopt = optind;
584 if (first_nonopt != last_nonopt && last_nonopt != optind)
586 else if (first_nonopt == last_nonopt)
588 last_nonopt = argc;
600 if (first_nonopt != last_nonopt)