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 | 251 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText() local 252 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 254 "--", help_text, max_len); in GenerateHelpText()
|
| /freebsd/contrib/ee/ |
| H A D | ee.c | 465 char *help_text[23]; variable 3892 emacs_help_text[counter] : help_text[counter]); in help() 5295 …help_text[0] = catgetlocal( 35, "Control keys: … in strings_init() 5296 …help_text[1] = catgetlocal( 36, "^a ascii code ^i tab ^r right … in strings_init() 5297 …help_text[2] = catgetlocal( 37, "^b bottom of text ^j newline ^t top of text … in strings_init() 5298 …help_text[3] = catgetlocal( 38, "^c command ^k delete char ^u up … in strings_init() 5299 …help_text[4] = catgetlocal( 39, "^d down ^l left ^v undelete word … in strings_init() 5300 …help_text[5] = catgetlocal( 40, "^e search prompt ^m newline ^w delete word … in strings_init() 5301 …help_text[6] = catgetlocal( 41, "^f undelete char ^n next page ^x search … in strings_init() 5302 …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 | 442 llvm::StringRef help_text = entry->help_function(); in GetArgumentHelp() local 445 help_text, name_str.GetSize()); in GetArgumentHelp() 447 interpreter.OutputHelpText(str, name_str.GetString(), "--", help_text, in GetArgumentHelp() 452 entry->help_text, name_str.GetSize()); in GetArgumentHelp() 665 std::string help_text(GetHelp()); in GenerateHelpText() local 667 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 669 interpreter.OutputFormattedHelpText(output_strm, "", help_text); in GenerateHelpText() 747 return g_argument_table[arg_type].help_text; in GetArgumentDescriptionAsCString()
|
| H A D | CommandInterpreter.cpp | 2994 llvm::StringRef help_text) { in OutputFormattedHelpText() argument 2999 line_width_max = help_text.size() + prefix.size(); in OutputFormattedHelpText() 3004 if (help_text.empty()) in OutputFormattedHelpText() 3005 help_text = "No help text"; in OutputFormattedHelpText() 3006 while (!help_text.empty()) { in OutputFormattedHelpText() 3015 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText() 3022 if (this_line.size() != help_text.size()) in OutputFormattedHelpText() 3031 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText() 3039 llvm::StringRef help_text, in OutputFormattedHelpText() argument 3044 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 | 453 llvm::StringRef help_text); 457 llvm::StringRef help_text, size_t max_word_len); 466 llvm::StringRef separator, llvm::StringRef help_text,
|
| H A D | CommandObject.h | 90 const char *help_text; member
|