Home
last modified time | relevance | path

Searched refs:help (Results 1 - 25 of 1115) sorted by relevance

12345678910>>...45

/third_party/python/Lib/test/libregrtest/
H A Dcmdline.py178 super().error(message + "\nPass -h or --help for complete help.")
191 # Arguments with this clause added to its help are described further in
196 # We add help explicitly to control what argument group it renders under.
197 group.add_argument('-h', '--help', action='help',
198 help='show this help message and exit')
200 help='dump the traceback and exit if a test takes '
204 help
[all...]
/third_party/rust/crates/proc-macro-error/src/
H A Dmacros.rs15 // span, message, help
52 // span, message, no help
200 ($var:ident $help:ident =? $msg:expr) => {
202 $var.suggestion(stringify!($help), msg.to_string())
207 ($var:ident $help:ident =? $span:expr => $msg:expr) => {
209 $var.span_suggestion($span.into(), stringify!($help), msg.to_string())
215 ($var:ident $help:ident =? $msg:expr ; $($rest:tt)*) => {
216 $crate::__pme__suggestions!($var $help =? $msg);
219 ($var:ident $help:ident =? $span:expr => $msg:expr ; $($rest:tt)*) => {
220 $crate::__pme__suggestions!($var $help
[all...]
/third_party/skia/third_party/externals/expat/expat/xmlwf/
H A Dxmlwf_helpgen.py59 input_related.add_argument('-s', action='store_true', help='print an error if the document is not [s]tandalone')
60 input_related.add_argument('-n', action='store_true', help='enable [n]amespace processing')
61 input_related.add_argument('-p', action='store_true', help='enable processing external DTDs and [p]arameter entities')
62 input_related.add_argument('-x', action='store_true', help='enable processing of e[x]ternal entities')
63 input_related.add_argument('-e', action='store', metavar='ENCODING', help='override any in-document [e]ncoding declaration')
64 input_related.add_argument('-w', action='store_true', help='enable support for [W]indows code pages')
65 input_related.add_argument('-r', action='store_true', help='disable memory-mapping and use normal file [r]ead IO calls instead')
66 input_related.add_argument('-k', action='store_true', help='when processing multiple files, [k]eep processing after first file with error')
69 output_related.add_argument('-d', action='store', metavar='DIRECTORY', help='output [d]estination directory')
71 output_mode.add_argument('-c', action='store_true', help
81 help='set maximum tolerated [a]mplification factor (default: 100.0)') global() variable
86 help='disable reparse deferral, and allow [q]uadratic parse runtime with large tokens') global() variable
[all...]
/third_party/jerryscript/tools/
H A Dbuild.py41 help='show help with all options '
52 This tool is a thin wrapper around cmake and make to help build the
59 help='specify build directory (default: %(default)s)')
61 help='clean build')
63 help='add custom argument to CMake')
65 help='add custom compile flag')
67 default='MinSizeRel', help='debug build')
69 help='install after build (default: don\'t install; '
72 help
[all...]
/third_party/rust/crates/clap/tests/derive/
H A Ddoc_comments_help.rs30 let help = utils::get_long_help::<LoremIpsum>(); in doc_comments()
31 assert!(help.contains("Lorem ipsum")); in doc_comments()
32 assert!(help.contains("Fooify a bar and a baz")); in doc_comments()
42 #[arg(short, long, help = "DO NOT PASS A BAR UNDER ANY CIRCUMSTANCES")] in help_is_better_than_comments()
46 let help = utils::get_long_help::<LoremIpsum>(); in help_is_better_than_comments()
47 assert!(help.contains("Dolor sit amet")); in help_is_better_than_comments()
48 assert!(!help.contains("Lorem ipsum")); in help_is_better_than_comments()
49 assert!(help.contains("DO NOT PASS A BAR")); in help_is_better_than_comments()
61 let help = utils::get_long_help::<LoremIpsum>(); in empty_line_in_doc_comment_is_double_linefeed()
62 assert!(help in empty_line_in_doc_comment_is_double_linefeed()
[all...]
H A Ddefault_value.rs17 let help = utils::get_long_help::<Opt>(); in default_value()
18 assert!(help.contains("[default: 3]")); in default_value()
31 let help = utils::get_long_help::<Opt>(); in default_value_t()
32 assert!(help.contains("[default: 3]")); in default_value_t()
45 let help = utils::get_long_help::<Opt>(); in auto_default_value_t()
46 assert!(help.contains("[default: 0]")); in auto_default_value_t()
105 let help = utils::get_long_help::<Opt>(); in default_values_t()
106 assert!(help.contains("[default: 1 2 3]")); in default_values_t()
129 let help = utils::get_long_help::<Opt>(); in default_value_os_t()
130 assert!(help in default_value_os_t()
[all...]
/third_party/rust/crates/clap/tests/builder/
H A Dderive_order.rs15 -h, --help Print help in no_derive_order()
27 .help("first flag") in no_derive_order()
32 .help("first option"), in no_derive_order()
35 .help("second flag") in no_derive_order()
40 .help("second option"), in no_derive_order()
43 utils::assert_output(cmd, "test --help", NO_DERIVE_ORDER, false); in no_derive_order()
56 -h, --help Print help in derive_order()
63 .help("firs in derive_order()
[all...]
H A Dhidden_args.rs13 -h, --help Print help
29 utils::assert_output(cmd, "test --help", HIDDEN_ARGS, false); in hide_args()
39 -h, --help Print help (see more with '--help')
56 .help("Some help text describing the --config arg"), in hide_short_args()
61 .help("This text should be visible"), in hide_short_args()
77 Some help tex in hide_short_args_long_help()
[all...]
H A Dhelp.rs1 #![cfg(feature = "help")]
28 let m = setup().try_get_matches_from(vec!["myprog", "--help"]); in help_long()
36 let m = setup().try_get_matches_from(vec!["myprog", "help"]); in help_no_subcommand()
50 .try_get_matches_from(vec!["myprog", "help"]); in help_subcommand()
79 .try_get_matches_from(["ctest", "help", "subcmd", "multi", "foo"]) in help_multi_subcommand_error()
86 For more information, try '--help'. in help_multi_subcommand_error()
101 -h, --help Print help in req_last_arg_usage()
107 .arg(Arg::new("FIRST").help("First").num_args(1..).required(true)) in req_last_arg_usage()
110 .help("Secon in req_last_arg_usage()
[all...]
/third_party/node/
H A Dconfigure.py89 help='select the install prefix [default: %(default)s]') variable
95 help='Build node with code coverage enabled') variable
101 help='also build debug build') variable
107 help='build the Node.js part of the binary with debugging symbols') variable
113 help=f"CPU architecture to build for ({', '.join(valid_arch)})") variable
119 help='force build to be considered as cross compiled') variable
124 help='force build to be considered as NOT cross compiled') variable
130 help=f"operating system to build for ({', '.join(valid_os)})") variable
136 help='Turn compiler warnings into errors for node core sources.') variable
142 help variable
148 help='use on deprecated SunOS systems that do not support ifaddrs.h') global() variable
154 help='Disable Single Executable Application support.') global() variable
160 help="Generate an executable without external dynamic libraries. This " global() variable
167 help="Generate an executable with libgcc and libstdc++ libraries. This " global() variable
173 help="Enable profiling support for Intel VTune profiler to profile " global() variable
181 help="Enable profiling with pgo of a binary. This feature is only available " global() variable
188 help="Enable use of the profile generated with --enable-pgo-generate. This " global() variable
195 help="Enable compiling with lto of a binary. This feature is only available " global() variable
201 help="Path to a JS file to be bundled in the binary as a builtin. " global() variable
210 help="The OpenSSL config appname (config section name) used by Node.js") global() variable
215 help='Use the specified cipher list as the default cipher list') global() variable
221 help="Do not build optimized assembly for OpenSSL") global() variable
227 help='specifies that the OpenSSL library is FIPS compatible') global() variable
233 help='Use OpenSSL supplied CA store instead of compiled-in Mozilla CA copy.') global() variable
238 help='Use the specified path to system CA (PEM format) in addition to ' global() variable
245 help='(no-op)') global() variable
251 help='link to a shared http_parser DLL instead of static linking') global() variable
256 help='directory containing http_parser header files') global() variable
262 help='alternative lib name to link to [default: %(default)s]') global() variable
267 help='a directory to search for the shared http_parser DLL') global() variable
273 help='link to a shared libuv DLL instead of static linking') global() variable
278 help='directory containing libuv header files') global() variable
284 help='alternative lib name to link to [default: %(default)s]') global() variable
289 help='a directory to search for the shared libuv DLL') global() variable
295 help='link to a shared nghttp2 DLL instead of static linking') global() variable
300 help='directory containing nghttp2 header files') global() variable
306 help='alternative lib name to link to [default: %(default)s]') global() variable
311 help='a directory to search for the shared nghttp2 DLLs') global() variable
317 help='link to a shared nghttp3 DLL instead of static linking') global() variable
322 help='directory containing nghttp3 header files') global() variable
328 help='alternative lib name to link to [default: %(default)s]') global() variable
333 help='a directory to search for the shared nghttp3 DLLs') global() variable
339 help='link to a shared ngtcp2 DLL instead of static linking') global() variable
344 help='directory containing ngtcp2 header files') global() variable
350 help='alternative lib name to link to [default: %(default)s]') global() variable
355 help='a directory to search for the shared tcp2 DLLs') global() variable
361 help='link to a shared OpenSSl DLL instead of static linking') global() variable
366 help='directory containing OpenSSL header files') global() variable
372 help='alternative lib name to link to [default: %(default)s]') global() variable
377 help='a directory to search for the shared OpenSSL DLLs') global() variable
383 help='link to a shared zlib DLL instead of static linking') global() variable
388 help='directory containing zlib header files') global() variable
394 help='alternative lib name to link to [default: %(default)s]') global() variable
399 help='a directory to search for the shared zlib DLL') global() variable
405 help='link to a shared brotli DLL instead of static linking') global() variable
410 help='directory containing brotli header files') global() variable
416 help='alternative lib name to link to [default: %(default)s]') global() variable
421 help='a directory to search for the shared brotli DLL') global() variable
427 help='link to a shared cares DLL instead of static linking') global() variable
432 help='directory containing cares header files') global() variable
438 help='alternative lib name to link to [default: %(default)s]') global() variable
443 help='a directory to search for the shared cares DLL') global() variable
452 help='Path to shared file for ' + builtin + ' builtin. ' global() variable
460 help='path to zoslib.gyp file for includes and to link to static zoslib library') global() variable
467 help='directory containing systemtap header files') global() variable
472 help='custom build tag') global() variable
477 help='Provide a custom URL prefix for the `process.release` properties ' global() variable
485 help=argparse.SUPPRESS) # Unsupported, undocumented. global() variable
491 help='Enable the --trace-maps flag in V8 (use at your own risk)') global() variable
497 help='[Experimental] Enable V8 pointer compression (limits max heap to 4GB and breaks ABI compatibility)') global() variable
503 help='Disable the shared read-only heap feature in V8') global() variable
508 help='v8 options to pass, see `node --v8-options` for examples.') global() variable
514 help='Enables building of fuzzers. This command should be run in an OSS-Fuzz Docker image.') global() variable
520 help=f"specifies which floating-point ABI to use ({', '.join(valid_arm_float_abi)}).") global() variable
526 help=f"ARM FPU mode ({', '.join(valid_arm_fpu)}) [default: %(default)s]") global() variable
533 help=f"MIPS arch variant ({', '.join(valid_mips_arch)}) [default: %(default)s]") global() variable
540 help=f"MIPS FPU mode ({', '.join(valid_mips_fpu)}) [default: %(default)s]") global() variable
547 help=f"MIPS floating-point ABI ({', '.join(valid_mips_float_abi)}) [default: %(default)s]") global() variable
553 help='build with DTrace (default is true on sunos and darwin)') global() variable
559 help='build with ETW (default is true on Windows)') global() variable
565 help='This option has no effect. --use-largepages is now a runtime option.') global() variable
571 help='This option has no effect. --use-largepages is now a runtime option.') global() variable
577 help='Pass a section ordering file to the linker. This requires that ' + global() variable
586 help=f"Intl mode (valid choices: {', '.join(valid_intl_modes)}) [default: %(default)s]") global() variable
597 help='Path to icu.gyp (ICU i18n, Chromium version only.)') global() variable
605 help='Comma-separated list of locales for "small-icu". "root" is assumed. ' global() variable
611 help='Intl mode: optional local path to icu/ dir, or path/URL of ' global() variable
618 help='Path to the icuXXdt{lb}.dat file. If unspecified, ICU data will ' global() variable
627 help='Use Link Time Code Generation. This feature is only available on Windows.') global() variable
633 help='Turn off V8 snapshot integration. Currently experimental.') global() variable
639 help='Turn off V8 Code cache integration.') global() variable
644 help=nodedownload.help()) global() variable
650 help='Download directory [default: %(default)s]') global() variable
658 help='build lib with DCHECK macros') global() variable
664 help='build nghttp2 with DEBUGBUILD (default is false)') global() variable
672 help='build without DTrace') global() variable
678 help='build without ETW') global() variable
684 help='do not install the bundled npm (package manager)') global() variable
690 help='do not install the bundled Corepack') global() variable
697 help=argparse.SUPPRESS) global() variable
703 help=argparse.SUPPRESS) global() variable
709 help=argparse.SUPPRESS) global() variable
715 help=argparse.SUPPRESS) global() variable
723 help='build without SSL (disables crypto, https, inspector, etc.)') global() variable
729 help='build without NODE_OPTIONS support') global() variable
735 help='generate build files for use with Ninja') global() variable
741 help='compile for Address Sanitizer to find memory bugs') global() variable
747 help='build as static library') global() variable
753 help='do not export browser globals like setTimeout, console, etc. ' + global() variable
761 help='disable the V8 inspector protocol') global() variable
767 help='compile shared library for embedding node in another project. ' + global() variable
774 help='a directory to install the shared library into relative to the ' global() variable
782 help='do not initialize v8 platform during node.js startup. ' + global() variable
789 help='do not use V8 includes from the bundled deps folder. ' + global() variable
796 help='get more output from this script') global() variable
802 help='compile V8 with minimal optimizations and with runtime checks') global() variable
808 help='compile V8 with debug checks and runtime debugging features enabled') global() variable
814 help='compile V8 in lite mode for constrained environments (lowers V8 '+ global() variable
822 help='compile V8 with auxiliary functions for native debuggers') global() variable
828 help='disable the V8 auxiliary functions for native debuggers') global() variable
834 help='Enable V8 transparent hugepage support. This feature is only '+ global() variable
841 help='Enable V8 short builtin calls support. This feature is enabled '+ global() variable
848 help='Enable the built-in snapshot compression in V8.') global() variable
854 help='node will load builtin modules from disk instead of from binary') global() variable
860 help='Run a file when building the embedded snapshot. Currently ' + global() variable
868 help=argparse.SUPPRESS) global() variable
[all...]
/third_party/toybox/scripts/
H A Dconfig2help.c1 /* config2.help.c - config2hep Config.in .config > help.h
118 struct double_list *help; member
144 char *dlist_zap(struct double_list **help) in dlist_zap() argument
146 struct double_list *dd = dlist_pop(help); in dlist_zap()
154 int zap_blank_lines(struct double_list **help) in zap_blank_lines() argument
158 while (*help) { in zap_blank_lines()
161 s = skip_spaces((*help)->data); in zap_blank_lines()
165 free(dlist_zap(help)); in zap_blank_lines()
174 // Moves *help t
181 grab_dashlines(struct double_list **help, struct double_list **from, int *len) grab_dashlines() argument
[all...]
/third_party/rust/crates/clap/clap_mangen/tests/
H A Dcommon.rs34 .help("some input file"), in basic_command()
39 .help("some config file") in basic_command()
51 .help("the case to test"), in basic_command()
65 .help("the other case to test"), in basic_command()
78 .help("Can be 'always', 'auto', or 'never'"), in basic_command()
84 .help("Can be \"always\", \"auto\", or \"never\""), in basic_command()
90 .help("For more information see `echo test`"), in basic_command()
96 .help("Avoid '\\n'"), in basic_command()
102 .help("List packages [filter]"), in basic_command()
108 .help("Execut in basic_command()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmain.py40 help="Append the script location generated a message to the output.",
45 help="Output 'info'-level development logging messages.",
50 help="Output 'debug'-level development logging messages (more verbose than -v).",
55 help="Make warnings act as errors, exiting with non-zero error code",
59 help="List all expected but unseen include files, not just those that are referenced.",
63 help="List all entities with expected but unseen ref page blocks. NOT included in -Wall!",
67 help="Make expected but unseen include files cause exiting with non-zero error code",
71 help="Make missing include/anchor for linked-to entities cause exiting with non-zero error code. Weaker version of --include_error.",
75 help="Just dump the parsed entity data to entities.json and exit.",
79 help
[all...]
/third_party/vulkan-loader/scripts/
H A Dloader_genvk.py301 help='Specify API name to generate') variable
304 help='Specify a single class of extensions to add to targets') variable
307 help='Specify an extension or extensions to add to targets') variable
310 help='Specify an extension or extensions to remove from targets') variable
313 help='Specify an extension or extensions to emit in targets') variable
316 help='Specify a core API feature name or names to add to targets') variable
318 help='Enable debugging') variable
320 help='Enable dump to stderr') variable
323 help='Write diagnostics to specified file') variable
326 help variable
328 help='Disable inclusion protection in output headers') global() variable
330 help='Enable profiling') global() variable
333 help='Use specified registry file instead of vk.xml') global() variable
335 help='Enable timing') global() variable
337 help='Enable XML group validation') global() variable
339 help='Path to generated files') global() variable
342 help='Create target and related files in specified directory') global() variable
344 help='Specify target') global() variable
346 help='Suppress script output during normal execution.') global() variable
348 help='Enable script output during normal execution.') global() variable
352 help='Find additional scripts in this directory') global() variable
[all...]
/third_party/python/Tools/peg_generator/pegen/
H A D__main__.py76 argparser.add_argument("-q", "--quiet", action="store_true", help="Don't print the parsed grammar")
82 help="Print timing stats; repeat for more debug output", variable
84 subparsers = argparser.add_subparsers(help="target language for the generated code")
86 c_parser = subparsers.add_parser("c", help="Generate C code for inclusion into CPython")
88 c_parser.add_argument("grammar_filename", help="Grammar description")
89 c_parser.add_argument("tokens_filename", help="Tokens description")
91 "-o", "--output", metavar="OUT", default="parse.c", help="Where to write the generated parser"
96 help="Compile generated C code into an extension module", variable
99 "--optimized", action="store_true", help="Compile the extension in optimized mode"
104 help variable
115 help="Where to write the generated parser", global() variable
120 help="Suppress code emission for rule actions", global() variable
[all...]
/third_party/rust/crates/clap/clap_complete/tests/
H A Dcommon.rs34 .help("some input file"), in basic_command()
39 .help("some config file") in basic_command()
51 .help("the case to test"), in basic_command()
67 .help("the other case to test"), in basic_command()
82 .help("Can be 'always', 'auto', or 'never'"), in basic_command()
88 .help("Can be \"always\", \"auto\", or \"never\""), in basic_command()
94 .help("For more information see `echo test`"), in basic_command()
100 .help("Avoid '\\n'"), in basic_command()
106 .help("List packages [filter]"), in basic_command()
112 .help("Execut in basic_command()
[all...]
/third_party/skia/tools/skpbench/
H A Dskpbench.py33 help="path to the skpbench binary") variable
35 action='store_true', help="execute skpbench over adb")
37 help="The name of the adb binary to use.") variable
39 help="if using adb, ID of the specific device to target " variable
43 help="initial max allowable relative standard deviation") variable
45 help="suffix to append on config (e.g. '_before', '_after')") variable
47 help="directory to save .png proofs to disk.") variable
49 type=int, default=1, help="level of verbosity (0=none to 5=debug)")
51 type=int, help="number of milliseconds to run each benchmark")
53 type=int, help
56 help="perform timing on the gpu clock instead of cpu (gpu work only)") global() variable
60 help="comma- or space-separated list of GPU path renderers, including: " global() variable
69 help="Causes all GPU paths to be processed as if 'setIsVolatile' had been called.") global() variable
73 help="optional file to append results into") global() variable
83 help="number of DDL recording threads (0=num_cores)") global() variable
90 help="Create this many extra threads to assist with GPU work, including" global() variable
94 help="Number of samples for internal draws that use MSAA.") global() variable
97 help=".skp files or directories to expand for .skp files, and/or .svg files") global() variable
100 help="Maximum number of bytes to use for budgeted GPU resources.") global() variable
[all...]
/third_party/node/deps/v8/tools/testrunner/
H A Dnum_fuzzer.py39 help="Default seed for initializing fuzzer random "
42 help="Number of tests to generate from each base test. "
50 help="probability [0-10] of adding --stress-marking "
53 help="probability [0-10] of adding --stress-scavenge "
56 help="probability [0-10] of adding --stress-compaction "
59 help="probability [0-10] of adding --random-gc-interval "
64 help="probability [0-10] of adding --stack-size "
69 help="probability [0-10] of adding --stress-delay-tasks "
72 help="probability [0-10] of adding --thread-pool-size "
77 help
[all...]
H A Dstandard_runner.py84 help='Indicates that V8 was compiled without VFP3'
90 help='Deprecated. '
94 help='Comma-separated list of testing variants;'
98 help='Deprecated. '
103 help='Regard slow tests (run|skip|dontcare)')
105 help='Regard pass|fail tests (run|skip|dontcare)')
107 help=('Quick check mode (skip slow tests)'))
111 help='Switch on GC stress mode',
114 help='Switch on random GC stress mode',
118 help
[all...]
/third_party/mesa3d/.gitlab-ci/
H A Dreport-flakes.py75 help='IRC server hostname', required=True)
77 help='IRC server port', required=True)
79 help='results.csv file from deqp-runner or piglit-runner', required=True)
81 help='*-flakes.txt file passed to deqp-runner or piglit-runner', required=True)
83 help='Known flakes report channel', required=True)
85 help='$CI_JOB_URL', required=True)
87 help='$CI_RUNNER_DESCRIPTION', required=True)
89 help='optional branch name')
91 help='optional branch title')
93 help
[all...]
/third_party/python/Lib/json/
H A Dtool.py26 help='a JSON file to be validated or pretty-printed',
30 help='write the output of infile to outfile',
33 help='sort the output of dictionaries alphabetically by key')
35 help='disable escaping of non-ASCII characters')
37 help='parse input using the JSON Lines format. '
41 help='separate items with newlines and use this number '
44 const='\t', help='separate items with newlines and use '
48 help='separate items with spaces rather than newlines')
50 help='suppress all whitespace separation (most compact)')
/third_party/skia/third_party/externals/angle2/scripts/
H A Dtrigger.py29 parser.add_argument('gn_path', help='path to GN. (e.g. out/Release)')
30 parser.add_argument('test', help='test name. (e.g. angle_end2end_tests)')
31 parser.add_argument('os_dim', help='OS dimension. (e.g. Windows-10)')
32 parser.add_argument('-s', '--shards', default=1, help='number of shards', type=int)
34 '-p', '--pool', default=DEFAULT_POOL, help='swarming pool, default is %s.' % DEFAULT_POOL)
35 parser.add_argument('-g', '--gpu', help='GPU dimension. (e.g. intel-hd-630-win10-stable)')
36 parser.add_argument('-t', '--device-type', help='Android device type (e.g. bullhead)')
37 parser.add_argument('-o', '--device-os', help='Android OS.')
42 help='Log level. Default is %s.' % DEFAULT_LOG_LEVEL)
44 '--gold', action='store_true', help
[all...]
/third_party/jerryscript/jerry-main/
H A Dcli.c341 * Print a help message wrapped into the second column.
344 cli_print_help (const char *help) /**< the help message to print */ in cli_print_help() argument
346 while (help != NULL && *help != 0) in cli_print_help()
350 for (; i < CLI_LINE_LENGTH - CLI_LINE_TAB && help[i] != 0; i++) in cli_print_help()
352 if (help[i] == ' ') in cli_print_help()
362 cli_print_prefix (help, length); in cli_print_help()
364 help += length; in cli_print_help()
365 while (*help in cli_print_help()
[all...]
/third_party/rust/crates/clap/clap_bench/benches/
H A D03_complex.rs55 .help("tests options") in build_from_builder()
61 .arg(Arg::new("positional").help("tests positionals").index(1)) in build_from_builder()
65 .help("tests flags") in build_from_builder()
73 .help("tests flags with exclusions") in build_from_builder()
80 .help("tests long options with exclusions") in build_from_builder()
89 .help("tests positionals with exclusions"), in build_from_builder()
96 .help("tests options with specific value sets") in build_from_builder()
102 .help("tests positionals with specific values") in build_from_builder()
109 .help("Tests multiple values, not mult occs") in build_from_builder()
116 .help("Test in build_from_builder()
[all...]
H A D04_new_help.rs6 let help = cmd.render_help(); in build_help()
7 help.to_string() in build_help()
41 .help("turn on debugging information") in app_example3()
47 .help("sets the config file to use") in app_example3()
52 .help("the input file to use") in app_example3()
72 .help("turn on debugging information") in app_example4()
79 .help("sets the config file to use") in app_example4()
85 .help("the input file to use") in app_example4()
94 .help("turns up the awesome") in app_example5()
105 .help("th in app_example6()
[all...]

Completed in 11 milliseconds

12345678910>>...45