Lines Matching refs:optind
191 optind = 0; in Options()
359 if (argc - optind <= 0) { in Options()
364 input_files_.emplace_back(argv[optind++]); in Options()
365 if (argc - optind >= 1) { in Options()
366 output_file_ = argv[optind++]; in Options()
380 input_files_.emplace_back(argv[optind++]); in Options()
381 if (argc - optind < 2) { in Options()
385 output_header_dir_ = argv[optind++]; in Options()
389 output_file_ = argv[optind++]; in Options()
391 if (argc - optind > 0) { in Options()
393 for (int i = optind; i < argc; i++) { in Options()
401 if (argc - optind < 1) { in Options()
406 if (argc - optind < 2) { in Options()
408 << "got " << (argc - optind) << "." << endl; in Options()
412 output_file_ = argv[optind++]; in Options()
415 while (optind < argc) { in Options()
416 input_files_.emplace_back(argv[optind++]); in Options()