• Home
  • Raw
  • Download

Lines Matching refs:positional

65    options often found in real programs.  For example, `positional`_ arguments,
149 with helper functions like `cl::desc(...)`_, so there are no positional
156 argument, the CommandLine library allows for `positional`_ arguments to be
157 specified for the program. These positional arguments are filled with command
165 This declaration indicates that the first positional argument should be treated
519 positional arguments together if there may be more than one specified. In the
716 file, but will not have an ordering defined if the positional arguments are
718 all of your positional arguments in one .cpp file.
720 Specifying positional options with hyphens
723 Sometimes you may want to specify a value to your positional argument that
743 should be treated as positional arguments, not options. Thus, we can use it
756 suffix of subsequent positional arguments and force the file to be interpreted
760 useful for options like ``-llibname`` which is actually a positional argument
818 processing, all arguments specified after the last positional argument are
849 "-y", "bar"]``, because they were specified after the last positional argument
854 program, there must be at least one `positional argument`_ specified, there must
855 not be any `cl::list`_ positional arguments, and the ``cl::ConsumeAfter`` option
923 `positional options`_) specifies what the option name is. This option is
1153 * The **cl::Positional** modifier specifies that this is a positional argument
1232 * The **cl::PositionalEatsArgs** modifier (which only applies to positional
1233 arguments, and only makes sense for lists) indicates that positional argument
1235 up until another recognized positional argument. For example, if you have two
1236 "eating" positional arguments, "``pos1``" and "``pos2``", the string "``-pos1
1279 access to declared non-positional command line options so that how they appear