Home | History | Annotate | Download | only in lib

Lines Matching refs:first_nonopt

251    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
254 static int first_nonopt;
298 One subsequence is elements [first_nonopt,last_nonopt)
303 `first_nonopt' and `last_nonopt' are relocated so that they describe
314 int bottom = first_nonopt;
386 first_nonopt += (optind - last_nonopt);
405 first_nonopt = last_nonopt = optind;
553 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
557 if (first_nonopt > optind)
558 first_nonopt = optind;
565 if (first_nonopt != last_nonopt && last_nonopt != optind)
568 first_nonopt = optind;
587 if (first_nonopt != last_nonopt && last_nonopt != optind)
589 else if (first_nonopt == last_nonopt)
590 first_nonopt = optind;
603 if (first_nonopt != last_nonopt)
604 optind = first_nonopt;