Home
last modified time | relevance | path

Searched refs:AllowLeadingHyphen (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/clap/src/args/
Dsettings.rs53 AllowLeadingHyphen => Flags::ALLOW_TAC_VALS,
101 AllowLeadingHyphen, enumerator
139 "allowleadinghyphen" => Ok(ArgSettings::AllowLeadingHyphen), in from_str()
160 ArgSettings::AllowLeadingHyphen in arg_settings_fromstr()
Darg.rs887 self.set(ArgSettings::AllowLeadingHyphen) in allow_hyphen_values()
889 self.unset(ArgSettings::AllowLeadingHyphen) in allow_hyphen_values()
/external/rust/crates/clap/src/app/
Dsettings.rs92 AllowLeadingHyphen => Flags::LEADING_HYPHEN,
212 AllowLeadingHyphen, enumerator
1008 "allowleadinghyphen" => Ok(AppSettings::AllowLeadingHyphen), in from_str()
1072 AppSettings::AllowLeadingHyphen in app_settings_fromstr()
Dparser.rs822 let app_wide_settings = if self.is_set(AS::AllowLeadingHyphen) { in is_new_arg()
842 (o.is_set(ArgSettings::AllowLeadingHyphen) || app_wide_settings) in is_new_arg()
850 (p.is_set(ArgSettings::AllowLeadingHyphen) || app_wide_settings) in is_new_arg()
1166 } else if !((self.is_set(AS::AllowLeadingHyphen) in get_matches_with()
1672 } else if self.is_set(AS::AllowLeadingHyphen) { in parse_long_arg()
1701 if self.is_set(AS::AllowLeadingHyphen) { in parse_short_arg()
/external/rust/crates/clap/
DCHANGELOG.md793 * allows specifying AllowLeadingHyphen style values, but only for specific args vice command wide…
1003 * **AllowLeadingHyphen:** fixes a bug where valid args aren't recognized with this setting ([a9699…
1218 * **AllowLeadingHyphen:** fixes an issue where isn't ignored like it should be with this setting …