Lines Matching defs:result
8 let result = Command::new("flag_conflict") in flag_conflict() localVariable
19 let result = Command::new("flag_conflict") in flag_conflict_2() localVariable
30 let result = Command::new("flag_conflict") in flag_conflict_with_all() localVariable
44 let result = cmd.clone().try_get_matches_from(vec!["myprog", "-f"]); in exclusive_flag() localVariable
47 let result = cmd.clone().try_get_matches_from(vec!["myprog", "-o", "-f"]); in exclusive_flag() localVariable
55 let result = Command::new("flag_conflict") in exclusive_option() localVariable
66 let result = Command::new("flag_conflict") in not_exclusive_with_defaults() localVariable
87 let result = cmd.try_get_matches_from(vec!["test", "--foo"]); in not_exclusive_with_group() localVariable
93 let result = Command::new("flag_conflict") in default_doesnt_activate_exclusive() localVariable
112 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other", "-f"]); in arg_conflicts_with_group() localVariable
117 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some"]); in arg_conflicts_with_group() localVariable
122 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some"]); in arg_conflicts_with_group() localVariable
127 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other"]); in arg_conflicts_with_group() localVariable
132 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--flag"]); in arg_conflicts_with_group() localVariable
150 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f"]); in arg_conflicts_with_group_with_multiple_sources() localVariable
155 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some", "usb1"]); in arg_conflicts_with_group_with_multiple_sources() localVariable
160 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some", "usb1", "--other", "40"]); in arg_conflicts_with_group_with_multiple_sources() localVariable
165 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some", "usb1"]); in arg_conflicts_with_group_with_multiple_sources() localVariable
183 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other", "-f"]); in group_conflicts_with_arg() localVariable
188 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some"]); in group_conflicts_with_arg() localVariable
193 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some"]); in group_conflicts_with_arg() localVariable
198 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other"]); in group_conflicts_with_arg() localVariable
203 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--flag"]); in group_conflicts_with_arg() localVariable
217 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other", "-f"]); in arg_conflicts_with_required_group() localVariable
222 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some"]); in arg_conflicts_with_required_group() localVariable
227 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some"]); in arg_conflicts_with_required_group() localVariable
232 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other"]); in arg_conflicts_with_required_group() localVariable
246 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other", "-f"]); in arg_conflicts_with_group_with_required_memeber() localVariable
251 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some"]); in arg_conflicts_with_group_with_required_memeber() localVariable
256 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some"]); in arg_conflicts_with_group_with_required_memeber() localVariable
261 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--flag"]); in arg_conflicts_with_group_with_required_memeber() localVariable
281 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other", "-f"]); in required_group_conflicts_with_arg() localVariable
286 let result = cmd.try_get_matches_from_mut(vec!["myprog", "-f", "--some"]); in required_group_conflicts_with_arg() localVariable
291 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--some"]); in required_group_conflicts_with_arg() localVariable
296 let result = cmd.try_get_matches_from_mut(vec!["myprog", "--other"]); in required_group_conflicts_with_arg() localVariable
313 let result = cmd.get_arg_conflicts_with(&flag); in get_arg_conflicts_with_group() localVariable
532 let result = Command::new("conflict") in conflict_with_unused_default() localVariable
553 let result = Command::new("conflict") in conflicts_with_alongside_default() localVariable
578 let result = Command::new("conflict") in group_in_conflicts_with() localVariable
609 let result = Command::new("conflict") in group_conflicts_with_default_value() localVariable
640 let result = Command::new("conflict") in group_conflicts_with_default_arg() localVariable
762 let result = cmd.try_get_matches_from(["test", "config"]); in subcommand_conflict_negates_required() localVariable