Home
last modified time | relevance | path

Searched refs:get_long_help (Results 1 – 12 of 12) sorted by relevance

/third_party/rust/crates/clap/tests/derive/
Ddoc_comments_help.rs30 let help = utils::get_long_help::<LoremIpsum>(); in doc_comments()
46 let help = utils::get_long_help::<LoremIpsum>(); in help_is_better_than_comments()
61 let help = utils::get_long_help::<LoremIpsum>(); in empty_line_in_doc_comment_is_double_linefeed()
90 let long_help = utils::get_long_help::<LoremIpsum>(); in field_long_doc_comment_both_help_long_help()
155 let help = utils::get_long_help::<SeeFigure1>(); in verbatim_doc_comment()
188 let help = utils::get_long_help::<Command>(); in verbatim_doc_comment_field()
205 let help = utils::get_long_help::<Command>(); in multiline_separates_default()
229 let help = utils::get_long_help::<Command>(); in value_enum_multiline_doc_comment()
303 let help = utils::get_long_help::<LoremIpsum>(); in force_long_help()
Ddefault_value.rs17 let help = utils::get_long_help::<Opt>(); in default_value()
31 let help = utils::get_long_help::<Opt>(); in default_value_t()
45 let help = utils::get_long_help::<Opt>(); in auto_default_value_t()
105 let help = utils::get_long_help::<Opt>(); in default_values_t()
129 let help = utils::get_long_help::<Opt>(); in default_value_os_t()
163 let help = utils::get_long_help::<Opt>(); in default_values_os_t()
Dauthor_version_about.rs26 let output = utils::get_long_help::<Opt>(); in no_author_version_about()
37 let output = utils::get_long_help::<Opt>(); in use_env()
52 let output = utils::get_long_help::<Opt>(); in explicit_version_not_str_lit()
Dapp_name.rs5 use crate::utils::get_long_help;
46 let help = get_long_help::<MyApp>(); in app_name_in_long_help_from_enum()
Dissues.rs74 let help = utils::get_long_help::<Opt>(); in issue_324()
100 let help = utils::get_long_help::<Opts>(); in issue_418()
Dexplicit_name_no_renaming.rs34 let help = utils::get_long_help::<Opt>(); in explicit_name_no_rename()
Dutils.rs26 pub fn get_long_help<T: CommandFactory>() -> String { in get_long_help() function
Dsubcommands.rs160 let output = utils::get_long_help::<Opt4>(); in test_tuple_commands()
/third_party/rust/crates/clap/src/output/
Dhelp_template.rs476 arg.get_long_help() in write_arg()
481 .or_else(|| arg.get_long_help()) in write_arg()
/third_party/rust/crates/clap/clap_mangen/src/
Drender.rs287 let long_help = opt.get_long_help(); in option_help()
/third_party/rust/crates/clap/src/builder/
Dcommand.rs4132 .filter(|arg| arg.get_help().is_none() && arg.get_long_help().is_none()) in _panic_on_missing_help()
4597 && (v.get_long_help().is_some() in long_help_exists_()
Darg.rs3720 pub fn get_long_help(&self) -> Option<&StyledStr> { in get_long_help() method