Searched refs:get_matches (Results 1 – 25 of 37) sorted by relevance
12
/third_party/rust/crates/clap/tests/builder/ |
D | propagate_globals.rs | 23 fn get_matches(cmd: Command, argv: &'static str) -> ArgMatches { in get_matches() function 76 let m = get_matches(get_app(), "myprog --global-arg=some_value outer inner"); in global_arg_used_top_level() 85 let m = get_matches(get_app(), "myprog outer --global-arg=some_value inner"); in global_arg_used_outer() 94 let m = get_matches(get_app(), "myprog outer inner --global-arg=some_value"); in global_arg_used_inner() 103 let m = get_matches(get_app(), "myprog outer inner"); in global_arg_default_value() 112 let m = get_matches(get_app(), "myprog --global-flag outer inner"); in global_flag_used_top_level() 121 let m = get_matches(get_app(), "myprog outer --global-flag inner"); in global_flag_used_outer() 130 let m = get_matches(get_app(), "myprog outer inner --global-flag"); in global_flag_used_inner() 139 let m = get_matches(get_app(), "myprog --global-flag --global-flag outer inner"); in global_flag_2x_used_top_level() 148 let m = get_matches(get_app(), "myprog outer inner --global-flag --global-flag"); in global_flag_2x_used_inner()
|
/third_party/rust/crates/clap/examples/tutorial_builder/ |
D | 03_03_positional.rs | 6 .get_matches(); in main()
|
D | 03_02_option.rs | 6 .get_matches(); in main()
|
D | 03_01_flag_bool.rs | 11 .get_matches(); in main()
|
D | 03_01_flag_count.rs | 11 .get_matches(); in main()
|
D | 04_01_possible.rs | 10 .get_matches(); in main()
|
D | 03_02_option_mult.rs | 11 .get_matches(); in main()
|
D | 03_05_default_values.rs | 10 .get_matches(); in main()
|
D | 04_02_parse.rs | 10 .get_matches(); in main()
|
D | 03_04_subcommands.rs | 13 .get_matches(); in main()
|
D | 02_crate.rs | 8 .get_matches(); in main()
|
D | 03_03_positional_mult.rs | 6 .get_matches(); in main()
|
D | 05_01_assert.rs | 4 let matches = cmd().get_matches(); in main()
|
D | 02_apps.rs | 10 .get_matches(); in main()
|
D | 02_app_settings.rs | 8 .get_matches(); in main()
|
D | 04_02_validate.rs | 12 .get_matches(); in main()
|
D | 01_quick.rs | 24 .get_matches(); in main()
|
/third_party/rust/crates/clap/src/bin/ |
D | stdio-fixture.rs | 14 cmd.get_matches(); in main()
|
/third_party/rust/crates/clap/examples/ |
D | multicall-hostname.rs | 12 match cmd.get_matches().subcommand_name() { in main()
|
D | cargo-example.rs | 11 let matches = cmd.get_matches(); in main()
|
D | escaped-positional.rs | 14 .get_matches(); in main()
|
D | multicall-busybox.rs | 34 let matches = cmd.get_matches(); in main()
|
/third_party/rust/crates/clap/examples/derive_ref/ |
D | augment_subcommands.rs | 16 let matches = cli.get_matches(); in main()
|
D | augment_args.rs | 14 let matches = cli.get_matches(); in main()
|
/third_party/rust/crates/clap/clap_complete/examples/ |
D | dynamic.rs | 24 let matches = cmd.get_matches(); in main()
|
12