Home | History | Annotate | Download | only in make-3.81

Lines Matching refs:first_nonopt

243    been skipped.  `first_nonopt' is the index in ARGV of the first of them;
246 static int first_nonopt;
289 One subsequence is elements [first_nonopt,last_nonopt)
294 `first_nonopt' and `last_nonopt' are relocated so that they describe
304 int bottom = first_nonopt;
376 first_nonopt += (optind - last_nonopt);
392 first_nonopt = last_nonopt = optind;
535 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
539 if (first_nonopt > optind)
540 first_nonopt = optind;
547 if (first_nonopt != last_nonopt && last_nonopt != optind)
550 first_nonopt = optind;
569 if (first_nonopt != last_nonopt && last_nonopt != optind)
571 else if (first_nonopt == last_nonopt)
572 first_nonopt = optind;
585 if (first_nonopt != last_nonopt)
586 optind = first_nonopt;