Home | History | Annotate | Download | only in test-platform

Lines Matching refs:Options

69     using Options = std::list<string>;
71 Options options(argv + 1, argv + argc);
75 auto match = std::find_first_of(begin(options), end(options), begin(helpOpts), end(helpOpts));
76 if (match != end(options)) {
81 if (options.empty()) {
86 auto filePath = options.front();
87 options.pop_front();
92 if (not options.empty()) {
93 if (not convertTo(options.front(), portNumber)) {
94 showInvalidUsage("Could not convert \"" + options.front() +
98 options.pop_front();
102 if (not options.empty()) {
103 showInvalidUsage("Unexpected extra arguments: " + utility::asString(options));