Home
last modified time | relevance | path

Searched refs:args_override_self (Results 1 – 11 of 11) sorted by relevance

/third_party/rust/crates/clap/tests/derive/
Doptions.rs24 #[command(args_override_self = true)] in required_option()
51 #[command(args_override_self = true)] in option_with_default()
70 #[command(args_override_self = true)] in option_with_raw_default()
100 #[command(args_override_self = true)] in option_from_str()
126 #[command(args_override_self = true)] in vec_from_str()
155 #[command(args_override_self = true)] in option_vec_from_str()
171 #[command(args_override_self = true)] in option_type_is_optional()
191 #[command(args_override_self = true)] in required_with_option_type()
234 #[command(args_override_self = true)] in ignore_qualified_option_type()
251 #[command(args_override_self = true)] in option_option_type_is_optional_value()
[all …]
Dflags.rs24 #[command(args_override_self = true)] in bool_type_is_flag()
/third_party/rust/crates/clap/tests/builder/
Dindices.rs6 .args_override_self(true) in indices_mult_opts()
33 .args_override_self(true) in index_mult_opts()
57 .args_override_self(true) in index_flag()
70 .args_override_self(true) in index_flags()
83 .args_override_self(true) in indices_mult_flags()
96 .args_override_self(true) in indices_mult_flags_combined()
109 .args_override_self(true) in indices_mult_flags_opt_combined()
124 .args_override_self(true) in indices_mult_flags_opt_combined_eq()
139 .args_override_self(true) in indices_mult_opt_value_delim_eq()
158 .args_override_self(true) in indices_mult_opt_value_no_delim_eq()
[all …]
Dmultiple_occurrences.rs6 .args_override_self(true) in multiple_occurrences_of_flags_long()
20 .args_override_self(true) in multiple_occurrences_of_flags_short()
Dflags.rs22 .args_override_self(true) in lots_o_flags_sep()
57 .args_override_self(true) in lots_o_flags_combined()
Daction.rs34 .args_override_self(true) in set()
107 .args_override_self(true) in set_true()
251 .args_override_self(true) in set_false()
Dapp_settings.rs965 .args_override_self(true) in aaos_opts_w_other_overrides()
987 .args_override_self(true) in aaos_opts_w_other_overrides_rev()
1014 .args_override_self(true) in aaos_opts_w_other_overrides_2()
1036 .args_override_self(true) in aaos_opts_w_other_overrides_rev_2()
1183 .args_override_self(true) in aaos_option_use_delim_false()
Doccurrences.rs231 .args_override_self(true) in issue_2171()
Dmultiple_values.rs404 let mut cmd = Command::new("test").args_override_self(true).arg( in optional_value()
/third_party/rust/crates/clap/src/builder/
Dcommand.rs990 pub fn args_override_self(self, yes: bool) -> Self { in args_override_self() method
/third_party/rust/crates/clap/
DCHANGELOG.md457 `ArgAction::IncOccurrences`, requiring `cmd.args_override_self(true)` to override instead (#4261)
724 - `Command::args_override_self` with `ArgAction::Set` (#2627, #3797)
765 …existing values (like `Arg::multiple_occurrences` mixed with `Command::args_override_self`) (#3777)