Lines Matching refs:positional

65    options often found in real programs.  For example, `positional`_ arguments,
150 with helper functions like `cl::desc(...)`_, so there are no positional
157 argument, the CommandLine library allows for `positional`_ arguments to be
158 specified for the program. These positional arguments are filled with command
166 This declaration indicates that the first positional argument should be treated
516 positional arguments together if there may be more than one specified. In the
712 file, but will not have an ordering defined if the positional arguments are
714 all of your positional arguments in one .cpp file.
716 Specifying positional options with hyphens
719 Sometimes you may want to specify a value to your positional argument that
739 should be treated as positional arguments, not options. Thus, we can use it
752 suffix of subsequent positional arguments and force the file to be interpreted
756 useful for options like ``-llibname`` which is actually a positional argument
814 processing, all arguments specified after the last positional argument are
845 "-y", "bar"]``, because they were specified after the last positional argument
850 program, there must be at least one `positional argument`_ specified, there must
851 not be any `cl::list`_ positional arguments, and the ``cl::ConsumeAfter`` option
919 `positional options`_) specifies what the option name is. This option is
1173 * The **cl::Positional** modifier specifies that this is a positional argument
1272 * The **cl::PositionalEatsArgs** modifier (which only applies to positional
1273 arguments, and only makes sense for lists) indicates that positional argument
1275 up until another recognized positional argument. For example, if you have two
1276 "eating" positional arguments, "``pos1``" and "``pos2``", the string "``-pos1
1315 access to declared non-positional command line options so that how they appear