Home
last modified time | relevance | path

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

/external/rust/crates/structopt/tests/
Dissues.rs47 #[structopt(setting = AppSettings::InferSubcommands)] in issue_289()
54 #[structopt(setting = AppSettings::InferSubcommands)] in issue_289()
/external/rust/crates/clap/src/app/
Dsettings.rs127 InferSubcommands => Flags::INFER_SUBCOMMANDS,
692 InferSubcommands, enumerator
1023 "infersubcommands" => Ok(AppSettings::InferSubcommands), in from_str()
1188 AppSettings::InferSubcommands in app_settings_fromstr()
Dparser.rs708 if !self.is_set(AS::InferSubcommands) { in possible_subcommand()
1031 && !self.is_set(AS::InferSubcommands) in get_matches_with()
1169 && !self.is_set(AS::InferSubcommands) in get_matches_with()
1177 } else if !has_args || self.is_set(AS::InferSubcommands) && self.has_subcommands() { in get_matches_with()
/external/rust/crates/structopt/examples/
Dsubcommand_aliases.rs8 #[structopt(setting = AppSettings::InferSubcommands)]
/external/rust/crates/clap/
DCHANGELOG.md610 * **InferSubcommands:** adds a setting to allow one to infer shortened subcommands or aliases (i.e…