Home
last modified time | relevance | path

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

/external/rust/crates/structopt/tests/
Ddoc-comments-help.rs77 let short_help = get_help::<LoremIpsum>(); in field_long_doc_comment_both_help_long_help() localVariable
80 assert!(short_help.contains("Dot is removed from one short comment")); in field_long_doc_comment_both_help_long_help()
81 assert!(!short_help.contains("Dot is removed from one short comment.")); in field_long_doc_comment_both_help_long_help()
82 assert!(short_help.contains("Dot is removed from multiline comments")); in field_long_doc_comment_both_help_long_help()
83 assert!(!short_help.contains("Dot is removed from multiline comments.")); in field_long_doc_comment_both_help_long_help()
85 assert!(!short_help.contains("Long help")); in field_long_doc_comment_both_help_long_help()
109 let short_help = get_help::<LoremIpsum>(); in top_long_doc_comment_both_help_long_help() localVariable
112 assert!(!short_help.contains("Or something else")); in top_long_doc_comment_both_help_long_help()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointResolverScripted.cpp137 std::string short_help; in GetDescription() local
142 short_help); in GetDescription()
144 if (!short_help.empty()) in GetDescription()
145 s->PutCString(short_help.c_str()); in GetDescription()
/external/zstd/tests/fuzz/
Dfuzz.py836 def short_help(args): function
842 short_help(args)
884 short_help(args)
/external/pigweed/pw_cli/py/pw_cli/
Dplugins.py328 def short_help(self) -> str: member in Registry
/external/llvm-project/lldb/source/Interpreter/
DCommandObject.cpp321 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord() local
325 if (search_short_help && short_help.contains_lower(search_word)) in HelpTextContainsWord()