• Home
  • Raw
  • Download

Lines Matching defs:cmd

59     let cmd = Command::new("ctest").subcommand(  in help_multi_subcommand_error()  localVariable
105 let cmd = Command::new("example") in req_last_arg_usage() localVariable
135 let cmd = Command::new("flamegraph") in args_with_last_usage() localVariable
250 let cmd = Command::new("clap-test") in after_and_before_help_output() localVariable
290 let cmd = Command::new("clap-test") in after_and_before_long_help_output() localVariable
315 let cmd = Command::new("ctest").subcommand( in multi_level_sc_help() localVariable
347 let cmd = Command::new("ctest").version("1.0").term_width(0); in no_wrap_default_help() localVariable
367 let cmd = Command::new("test") in wrapped_help() localVariable
413 let cmd = Command::new("test") in unwrapped_help() localVariable
472 let cmd = Command::new("test") in possible_value_wrapped_help() localVariable
549 let cmd = Command::new("ctest").version("0.1").term_width(70).arg( in issue_626_unicode_cutoff() localVariable
579 let cmd = Command::new("ctest") in hide_possible_vals() localVariable
605 let cmd = Command::new("ctest") in hide_single_possible_val() localVariable
723 let cmd = Command::new("ctest") in issue_626_panic() localVariable
769 let cmd = Command::new("ctest").version("0.1").term_width(24); in final_word_wrapping() localVariable
791 let cmd = Command::new("ctest") in wrapping_newline_chars() localVariable
820 let cmd = Command::new("ctest") in wrapping_newline_variables() localVariable
834 let cmd = Command::new("Example") in dont_wrap_urls() localVariable
870 let cmd = Command::new("ctest").version("0.1").arg( in old_newline_chars() localVariable
881 let cmd = Command::new("ctest").version("0.1").arg( in old_newline_variables() localVariable
959 let cmd = Command::new("myapp") in issue_702_multiple_values() localVariable
1016 let cmd = Command::new("myapp") in long_about() localVariable
1040 let cmd = Command::new("ripgrep").version("0.5").override_usage( in ripgrep_usage() localVariable
1066 let cmd = Command::new("ripgrep") in ripgrep_usage_using_templates() localVariable
1086 let cmd = Command::new("ripgrep") in ripgrep_usage_using_templates() localVariable
1127 let cmd = Command::new("prog") in sc_negates_reqs() localVariable
1148 let cmd = Command::new("prog") in hide_args() localVariable
1176 let cmd = Command::new("prog") in args_negate_sc() localVariable
1201 let cmd = Command::new("prog") in issue_1046_hide_scs() localVariable
1227 let cmd = Command::new("A cmd with a crazy very long long long name hahaha") in issue_777_wrap_all_things() localVariable
1246 let cmd = Command::new("test") in override_help_short() localVariable
1265 let cmd = Command::new("test") in override_help_long() localVariable
1284 let cmd = Command::new("test") in override_help_about() localVariable
1339 let cmd = Command::new("last") in last_arg_mult_usage() localVariable
1368 let cmd = Command::new("last") in last_arg_mult_usage_req() localVariable
1403 let cmd = Command::new("last") in last_arg_mult_usage_req_with_sc() localVariable
1440 let cmd = Command::new("last") in last_arg_mult_usage_with_sc() localVariable
1587 let cmd = Command::new("test") in issue_1052_require_delim_help() localVariable
1619 let cmd = Command::new("blorp") in custom_headers_headers() localVariable
1668 let cmd = Command::new("blorp") in multiple_custom_help_headers() localVariable
1740 let cmd = Command::new("blorp") in custom_help_headers_hide_args() localVariable
1792 let cmd = Command::new("ctest").version("0.1").subcommand( in show_long_about_issue_897() localVariable
1813 let cmd = Command::new("ctest").version("0.1").subcommand( in show_short_about_issue_897() localVariable
1835 let cmd = Command::new("demo") in issue_1364_no_short_options() localVariable
1867 let cmd = Command::new("test") in issue_1487() localVariable
1990 let cmd = Command::new("prog").arg( in issue_1642_long_help_spacing() localVariable
2012 let mut cmd = Command::new("myapp") in after_help_no_args() localVariable
2034 let cmd = Command::new("myapp") in help_subcmd_help() localVariable
2051 let cmd = Command::new("myapp") in subcmd_help_subcmd_help() localVariable
2076 let cmd = Command::new("myapp") in global_args_should_show_on_toplevel_help_message() localVariable
2099 let cmd = Command::new("myapp") in global_args_should_not_show_on_help_message_for_help_help() localVariable
2125 let cmd = Command::new("myapp") in global_args_should_show_on_help_message_for_subcommand() localVariable
2148 let cmd = Command::new("myapp") in global_args_should_show_on_help_message_for_nested_subcommand() localVariable
2176 let cmd = Command::new("order").args([ in option_usage_order() localVariable
2206 let cmd = Command::new("about-in-subcommands-list").subcommand( in prefer_about_over_long_about_in_subcommands_list() localVariable
2234 let cmd = clap::Command::new("hello") in issue_1794_usage() localVariable
2268 let cmd = Command::new("test") in custom_heading_pos() localVariable
2286 let cmd = Command::new("test") in only_custom_heading_opts_no_args() localVariable
2306 let cmd = Command::new("test") in only_custom_heading_pos_no_args() localVariable
2319 let cmd = Command::new("my_app") in issue_2508_number_of_values_with_single_value_name() localVariable
2344 let cmd = Command::new("test") in missing_positional_final_required() localVariable
2367 let cmd = Command::new("test") in missing_positional_final_multiple() localVariable
2392 let cmd = Command::new("test").arg( in positional_multiple_values_is_dotted() localVariable
2413 let cmd = Command::new("test").arg( in positional_multiple_values_is_dotted() localVariable
2438 let cmd = Command::new("test").arg( in positional_multiple_occurrences_is_dotted() localVariable
2460 let cmd = Command::new("test").arg( in positional_multiple_occurrences_is_dotted() localVariable
2486 let cmd = Command::new("test").arg( in too_few_value_names_is_dotted() localVariable
2553 let cmd = Command::new("bar") in override_help_subcommand() localVariable
2570 let cmd = Command::new("foo") in override_help_flag_using_long() localVariable
2580 let cmd = Command::new("foo") in override_help_flag_using_short() localVariable
2592 let cmd = Command::new("example").subcommand(Command::new("test").about("Subcommand")); in subcommand_help_doesnt_have_useless_help_flag() localVariable
2611 let mut cmd = Command::new("test_app") in disable_help_flag_affects_help_subcommand() localVariable
2631 let cmd = clap::Command::new("example") in dont_propagate_version_to_help_subcommand() localVariable
2655 let mut cmd = clap::Command::new("test") in help_without_short() localVariable
2681 let cmd = Command::new("parent") in parent_cmd_req_in_usage_with_help_flag() localVariable
2704 let cmd = Command::new("parent") in parent_cmd_req_in_usage_with_help_subcommand() localVariable
2727 let mut cmd = Command::new("parent") in parent_cmd_req_in_usage_with_render_help() localVariable
2753 let cmd = Command::new("ctest") in parent_cmd_req_ignored_when_negates_reqs() localVariable
2769 let cmd = Command::new("ctest") in parent_cmd_req_ignored_when_conflicts() localVariable
2778 let cmd = Command::new("ctest") in no_wrap_help() localVariable
2786 let mut cmd = Command::new("app").bin_name("app.exe"); in display_name_default() localVariable
2793 let mut cmd = Command::new("app") in display_name_explicit() localVariable
2802 let mut cmd = Command::new("parent").subcommand(Command::new("child").bin_name("child.exe")); in display_name_subcommand_default() localVariable
2812 let mut cmd = Command::new("parent").subcommand( in display_name_subcommand_explicit() localVariable