Home
last modified time | relevance | path

Searched refs:long_help (Results 1 – 16 of 16) sorted by relevance

/external/rust/crates/structopt/tests/
Ddoc-comments-help.rs78 let long_help = get_long_help::<LoremIpsum>(); in field_long_doc_comment_both_help_long_help() localVariable
84 assert!(long_help.contains("Long help")); in field_long_doc_comment_both_help_long_help()
110 let long_help = get_subcommand_long_help::<LoremIpsum>("foo"); in top_long_doc_comment_both_help_long_help() localVariable
113 assert!(long_help.contains("DO NOT PASS A BAR UNDER ANY CIRCUMSTANCES")); in top_long_doc_comment_both_help_long_help()
114 assert!(long_help.contains("Or something else")); in top_long_doc_comment_both_help_long_help()
Dskip.rs102 #[structopt(skip, long_help = "internal_stuff\ndo not touch")] in skip_help_doc_comments()
/external/rust/crates/clap/src/args/
Dany_arg.rs34 fn long_help(&self) -> Option<&'e str>; in long_help() method
113 fn long_help(&self) -> Option<&'e str> { in long_help() function
114 (*self).long_help() in long_help()
Darg.rs112 "long_help" => yaml_to_str!(a, v, long_help), in from_yaml()
622 pub fn long_help(mut self, h: &'b str) -> Self { in long_help() method
623 self.b.long_help = Some(h); in long_help()
/external/llvm-project/lldb/source/Interpreter/
DCommandObject.cpp322 llvm::StringRef long_help = GetHelpLong(); in HelpTextContainsWord() local
327 else if (search_long_help && long_help.contains_lower(search_word)) in HelpTextContainsWord()
833 llvm::StringRef long_help) { in FormatLongHelpText() argument
835 std::stringstream lineStream{std::string(long_help)}; in FormatLongHelpText()
873 llvm::StringRef long_help = GetHelpLong(); in GenerateHelpText() local
874 if (!long_help.empty()) { in GenerateHelpText()
875 FormatLongHelpText(output_strm, long_help); in GenerateHelpText()
/external/rust/crates/structopt/examples/
Ddoc_comments.rs40 long_help = r"This is a raw string.
DREADME.md22 How to use doc comments in place of `help/long_help`.
/external/rust/crates/clap/src/args/arg_builder/
Dflag.rs124 fn long_help(&self) -> Option<&'e str> { in long_help() method
125 self.b.long_help in long_help()
Dbase.rs10 pub long_help: Option<&'b str>, field
Dpositional.rs201 fn long_help(&self) -> Option<&'e str> { in long_help() method
202 self.b.long_help in long_help()
Doption.rs180 fn long_help(&self) -> Option<&'e str> { in long_help() method
181 self.b.long_help in long_help()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandObject.h172 void FormatLongHelpText(Stream &output_strm, llvm::StringRef long_help);
/external/rust/crates/clap/src/app/
Dhelp.rs459 arg.long_help().unwrap_or_else(|| arg.help().unwrap_or("")) in help()
461 arg.help().unwrap_or_else(|| arg.long_help().unwrap_or("")) in help()
Dmod.rs1868 fn long_help(&self) -> Option<&'e str> { in long_help() method
Dparser.rs1571 v.long_help.is_some() in use_long_help()
/external/rust/crates/clap/
DCHANGELOG.md503 * `Arg::long_help`