Searched refs:allow_hyphen_values (Results 1 – 8 of 8) sorted by relevance
/third_party/rust/crates/clap/tests/builder/ |
D | opts.rs | 63 .allow_hyphen_values(true) in double_hyphen_as_value() 353 .allow_hyphen_values(true), in leading_hyphen_pass() 385 .allow_hyphen_values(true), in leading_hyphen_with_flag_after() 405 .arg(arg!(o: -o [opt] ... "some opt").allow_hyphen_values(true)) in leading_hyphen_with_flag_before() 427 .allow_hyphen_values(true), in leading_hyphen_with_only_pos_follows()
|
D | app_settings.rs | 440 .arg(Arg::new("some").allow_hyphen_values(true)) in leading_hyphen_short() 460 .arg(Arg::new("some").allow_hyphen_values(true)) in leading_hyphen_long() 484 .allow_hyphen_values(true), in leading_hyphen_opt() 595 .allow_hyphen_values(true), in assert_trailing_var_args() 816 .allow_hyphen_values(true), in issue_1066_allow_leading_hyphen_and_unknown_args_option() 829 .allow_hyphen_values(true) in issue_1437_allow_hyphen_values_for_positional_arg() 846 .allow_hyphen_values(true) in issue_3880_allow_long_flag_hyphen_value_for_positional_arg()
|
D | positionals.rs | 26 .allow_hyphen_values(true) in issue_946() 342 .allow_hyphen_values(true), in ignore_hyphen_values_on_last()
|
D | multiple_values.rs | 1388 .allow_hyphen_values(true) in multiple_vals_with_hyphen()
|
/third_party/rust/crates/clap/clap_bench/benches/ |
D | 05_ripgrep.rs | 329 .allow_hyphen_values(true) in cmd()
|
/third_party/rust/crates/clap/src/builder/ |
D | arg.rs | 1371 pub fn allow_hyphen_values(self, yes: bool) -> Self { in allow_hyphen_values() method 1587 self.allow_hyphen_values(yes).last(yes) in raw()
|
D | command.rs | 2019 pub fn allow_hyphen_values(self, yes: bool) -> Self { in allow_hyphen_values() method
|
/third_party/rust/crates/clap/ |
D | CHANGELOG.md | 523 …recedence than hyphen values with `Arg::allow_hyphen_values`, to be consistent with `Command::allo… 598 - `Command::allow_hyphen_values` in favor of `Arg::allow_hyphen_values` to make it clearer which ar… 649 …higher precedence than hyphen values with `Arg::allow_hyphen_values`, like `Command::allow_hyphen_… 1300 - `Arg::env`, `Arg::env_os`, `Arg::last`, `Arg::require_equals`, `Arg::allow_hyphen_values`, 1602 …ce function to `Arg` that allows implying all of `Arg::last` `Arg::allow_hyphen_values` and `Arg::… 1868 * **Arg::allow_hyphen_values:** updates the docs to include warnings for allow_hyphen_values and m… 1887 * **Arg::allow_hyphen_values:** updates the docs to include warnings for allow_hyphen_values and m… 2168 …xes a bug which caused combinations of LowIndexMultiples and `Arg::allow_hyphen_values` to fail pa…
|