Lines Matching defs:cmd
11 let cmd = Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::Set)); in set() localVariable
44 let cmd = Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::Append)); in append() localVariable
83 let cmd = in set_true() localVariable
117 let cmd = Command::new("test").arg( in set_true_with_explicit_default_value() localVariable
140 let cmd = Command::new("test") in set_true_with_default_value_if_present() localVariable
167 let cmd = Command::new("test") in set_true_with_default_value_if_value() localVariable
194 let cmd = Command::new("test") in set_true_with_required_if_eq() localVariable
224 let cmd = Command::new("test").arg( in set_false() localVariable
261 let cmd = Command::new("test").arg( in set_false_with_explicit_default_value() localVariable
284 let cmd = Command::new("test") in set_false_with_default_value_if_present() localVariable
311 let cmd = Command::new("test") in set_false_with_default_value_if_value() localVariable
338 let cmd = Command::new("test").arg(Arg::new("mammal").long("mammal").action(ArgAction::Count)); in count() localVariable
364 let cmd = Command::new("test").arg( in count_with_explicit_default_value() localVariable
387 let cmd = Command::new("test") in count_with_default_value_if_present() localVariable
414 let cmd = Command::new("test") in count_with_default_value_if_value() localVariable