Searched refs:help_text (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandOptionArgumentTable.cpp | 137 static std::string help_text; in FormatHelpTextCallback() local 139 if (!help_text.empty()) in FormatHelpTextCallback() 140 return help_text; in FormatHelpTextCallback() 158 help_text = std::string(sstr.GetString()); in FormatHelpTextCallback() 160 return help_text; in FormatHelpTextCallback() 164 static std::string help_text; in LanguageTypeHelpTextCallback() local 166 if (!help_text.empty()) in LanguageTypeHelpTextCallback() 167 return help_text; in LanguageTypeHelpTextCallback() 176 help_text = std::string(sstr.GetString()); in LanguageTypeHelpTextCallback() 178 return help_text; in LanguageTypeHelpTextCallback()
|
H A D | CommandObjectMultiword.cpp | 236 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText() 237 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() local 239 "--", help_text, max_len); in GenerateHelpText()
|
/freebsd/contrib/ee/ |
H A D | ee.c | 418 char *help_text[23]; variable 3661 emacs_help_text[counter] : help_text[counter]); in help() 5111 …help_text[0] = catgetlocal( 35, "Control keys: … in strings_init() 5112 …help_text[1] = catgetlocal( 36, "^a ascii code ^i tab ^r right … in strings_init() 5113 …help_text[2] = catgetlocal( 37, "^b bottom of text ^j newline ^t top of text … in strings_init() 5114 …help_text[3] = catgetlocal( 38, "^c command ^k delete char ^u up … in strings_init() 5115 …help_text[4] = catgetlocal( 39, "^d down ^l left ^v undelete word … in strings_init() 5116 …help_text[5] = catgetlocal( 40, "^e search prompt ^m newline ^w delete word … in strings_init() 5117 …help_text[6] = catgetlocal( 41, "^f undelete char ^n next page ^x search … in strings_init() 5118 …help_text[7] = catgetlocal( 42, "^g begin of line ^o end of line ^y delete line … in strings_init() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
H A D | CommandObject.cpp | 449 llvm::StringRef help_text = entry->help_function(); in GetArgumentHelp() local 452 help_text, name_str.GetSize()); in GetArgumentHelp() 454 interpreter.OutputHelpText(str, name_str.GetString(), "--", help_text, in GetArgumentHelp() 459 entry->help_text, name_str.GetSize()); in GetArgumentHelp() 672 std::string help_text(GetHelp()); in GenerateHelpText() local 674 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 676 interpreter.OutputFormattedHelpText(output_strm, "", help_text); in GenerateHelpText() 754 return g_argument_table[arg_type].help_text; in GetArgumentDescriptionAsCString()
|
H A D | CommandInterpreter.cpp | 2842 llvm::StringRef help_text) { in OutputFormattedHelpText() argument 2847 line_width_max = help_text.size() + prefix.size(); in OutputFormattedHelpText() 2852 if (help_text.empty()) in OutputFormattedHelpText() 2853 help_text = "No help text"; in OutputFormattedHelpText() 2854 while (!help_text.empty()) { in OutputFormattedHelpText() 2863 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText() 2870 if (this_line.size() != help_text.size()) in OutputFormattedHelpText() 2879 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText() 2887 llvm::StringRef help_text, in OutputFormattedHelpText() argument 2892 OutputFormattedHelpText(strm, prefix_stream.GetString(), help_text); in OutputFormattedHelpText() [all …]
|
/freebsd/share/examples/bootforth/ |
H A D | menu.4th | 55 : help_text 73 help_text
|
H A D | menuconf.4th | 57 : help_text 74 help_text
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
H A D | CommandInterpreter.h | 446 llvm::StringRef help_text); 450 llvm::StringRef help_text, size_t max_word_len); 459 llvm::StringRef separator, llvm::StringRef help_text,
|
H A D | CommandObject.h | 89 const char *help_text; member
|