Home
last modified time | relevance | path

Searched refs:get_short_and_visible_aliases (Results 1 – 8 of 8) sorted by relevance

/third_party/rust/crates/clap/clap_complete/src/shells/
Delvish.rs80 if let Some(shorts) = option.get_short_and_visible_aliases() { in generate_inner()
98 if let Some(shorts) = flag.get_short_and_visible_aliases() { in generate_inner()
Dpowershell.rs87 if let Some(shorts) = option.get_short_and_visible_aliases() { in generate_inner()
117 if let Some(shorts) = flag.get_short_and_visible_aliases() { in generate_inner()
Dfish.rs88 if let Some(shorts) = option.get_short_and_visible_aliases() {
114 if let Some(shorts) = flag.get_short_and_visible_aliases() {
Dbash.rs180 if let Some(shorts) = o.get_short_and_visible_aliases() { in option_details_for_path()
Dzsh.rs468 if let Some(shorts) = o.get_short_and_visible_aliases() {
/third_party/rust/crates/clap/clap_complete_fig/src/
Dfig.rs152 if let Some(shorts) = option.get_short_and_visible_aliases() { in gen_options()
269 if let Some(shorts) = flag.get_short_and_visible_aliases() { in gen_options()
/third_party/rust/crates/clap/tests/builder/
Darg_aliases.rs99 assert!(a.get_short_and_visible_aliases().is_none()); in get_aliases()
/third_party/rust/crates/clap/src/builder/
Darg.rs3767 pub fn get_short_and_visible_aliases(&self) -> Option<Vec<char>> { in get_short_and_visible_aliases() method