Home
last modified time | relevance | path

Searched refs:help_text (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandObject.cpp658 static std::string help_text; in FormatHelpTextCallback() local
660 if (!help_text.empty()) in FormatHelpTextCallback()
661 return help_text; in FormatHelpTextCallback()
679 help_text = sstr.GetString(); in FormatHelpTextCallback()
681 return help_text; in FormatHelpTextCallback()
685 static std::string help_text; in LanguageTypeHelpTextCallback() local
687 if (!help_text.empty()) in LanguageTypeHelpTextCallback()
688 return help_text; in LanguageTypeHelpTextCallback()
697 help_text = sstr.GetString(); in LanguageTypeHelpTextCallback()
699 return help_text; in LanguageTypeHelpTextCallback()
[all …]
H A DCommandInterpreter.cpp2522 llvm::StringRef help_text) { in OutputFormattedHelpText() argument
2527 line_width_max = help_text.size() + prefix.size(); in OutputFormattedHelpText()
2531 while (!help_text.empty()) { in OutputFormattedHelpText()
2540 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText()
2547 if (this_line.size() != help_text.size()) in OutputFormattedHelpText()
2556 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText()
2564 llvm::StringRef help_text, in OutputFormattedHelpText() argument
2569 OutputFormattedHelpText(strm, prefix_stream.GetString(), help_text); in OutputFormattedHelpText()
2574 llvm::StringRef help_text, in OutputHelpText() argument
2582 text_strm << separator << " " << help_text; in OutputHelpText()
/freebsd-12.1/usr.sbin/bsdinstall/partedit/
H A Ddiskeditor.c71 const char *help_text[] = { in diskeditor_show() local
150 dlg_item_help(help_text[cur_button]); in diskeditor_show()
180 dlg_item_help(help_text[cur_button]); in diskeditor_show()
194 dlg_item_help(help_text[cur_button]); in diskeditor_show()
202 dlg_item_help(help_text[cur_button]); in diskeditor_show()
271 dlg_item_help(help_text[cur_button]); in diskeditor_show()
/freebsd-12.1/contrib/ee/
H A Dee.c428 char *help_text[23]; variable
5235 emacs_help_text[0] = help_text[0]; in strings_init()
5244 emacs_help_text[9] = help_text[9]; in strings_init()
5245 emacs_help_text[10] = help_text[10]; in strings_init()
5246 emacs_help_text[11] = help_text[11]; in strings_init()
5247 emacs_help_text[12] = help_text[12]; in strings_init()
5248 emacs_help_text[13] = help_text[13]; in strings_init()
5249 emacs_help_text[14] = help_text[14]; in strings_init()
5250 emacs_help_text[15] = help_text[15]; in strings_init()
5251 emacs_help_text[16] = help_text[16]; in strings_init()
[all …]
/freebsd-12.1/contrib/gperf/doc/
H A Dhelp2man164 my ($help_text, $version_text) = map {
230 if ($help_text =~ s/^Usage:( +(\S+))(.*)((?:\n(?: {6}\1| *or: +\S).*)*)//m)
265 $_ = "$help_text\n\n$version_text";
/freebsd-12.1/share/examples/bootforth/
H A Dmenu.4th56 : help_text
74 help_text
H A Dmenuconf.4th58 : help_text
75 help_text
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMultiword.cpp170 std::string help_text(pos->second->GetHelp()); in GenerateHelpText() local
171 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText()
174 help_text.c_str(), max_len); in GenerateHelpText()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h343 llvm::StringRef help_text);
347 llvm::StringRef help_text, size_t max_word_len);
356 llvm::StringRef separator, llvm::StringRef help_text,
H A DCommandObject.h87 const char *help_text; member