Lines Matching defs:m
7 let m = Command::new("test") in subcommand() localVariable
32 let m = Command::new("test") in subcommand_none_given() localVariable
51 let m = Command::new("test") in subcommand_multiple() localVariable
79 let m = Command::new("myprog") in single_alias() localVariable
88 let m = Command::new("myprog") in multiple_aliases() localVariable
177 let m = Command::new("myprog") in alias_help() localVariable
231 let m = Command::new("prog") in replace() localVariable
254 let m = res.unwrap(); in issue_1031_args_with_same_name() localVariable
269 let m = res.unwrap(); in issue_1031_args_with_same_name_no_more_vals() localVariable
303 let m = res.unwrap(); in issue_1161_multiple_hyphen_hyphen() localVariable
323 let m = Command::new("myprog") in issue_1722_not_emit_error_when_arg_follows_similar_to_a_subcommand() localVariable
370 let m = Command::new("myprog") in subcommand_after_argument() localVariable
384 let m = Command::new("myprog") in subcommand_after_argument_looks_like_help() localVariable
402 let m = cmd in issue_2494_subcommand_is_present() localVariable
409 let m = cmd in issue_2494_subcommand_is_present() localVariable
416 let m = cmd.try_get_matches_from(["opt", "global"]).unwrap(); in issue_2494_subcommand_is_present() localVariable
451 let m = cmd in busybox_like_multicall() localVariable
458 let m = cmd.clone().try_get_matches_from(["true"]).unwrap(); in busybox_like_multicall() localVariable
461 let m = cmd.clone().try_get_matches_from(["a.out"]); in busybox_like_multicall() localVariable
473 let m = cmd.clone().try_get_matches_from(["hostname"]).unwrap(); in hostname_like_multicall() localVariable
476 let m = cmd.clone().try_get_matches_from(["dnsdomainname"]).unwrap(); in hostname_like_multicall() localVariable
479 let m = cmd.clone().try_get_matches_from(["a.out"]); in hostname_like_multicall() localVariable
483 let m = cmd.try_get_matches_from_mut(["hostname", "hostname"]); in hostname_like_multicall() localVariable
487 let m = cmd.try_get_matches_from(["hostname", "dnsdomainname"]); in hostname_like_multicall() localVariable