Lines Matching refs:Positional
163 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
176 cl::opt<string> InputFilename(cl::Positional, cl::desc("<input file>"), cl::Required);
183 cl::opt<string> InputFilename(cl::Positional, cl::Required, cl::desc("<input file>"));
526 cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<Input files>"), cl::OneOrMore);
686 Positional Arguments
689 Positional arguments are those arguments that are not named, and are not
690 specified with a hyphen. Positional arguments should be used when an option is
698 cl::opt<string> Regex (cl::Positional, cl::desc("<regular expression>"), cl::Required);
699 cl::opt<string> Filename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
714 Positional arguments are sorted by their order of construction. This means that
773 static cl::list<std::string> Files(cl::Positional, cl::OneOrMore);
832 cl::opt<string> Script(cl::Positional, cl::desc("<input script>"), cl::init("-"));
1086 * The **cl::ConsumeAfter** modifier is described in the `Positional arguments
1151 .. _cl::Positional:
1153 * The **cl::Positional** modifier specifies that this is a positional argument
1155 `Positional Arguments`_ section for more information.