Searched refs:help_text (Results 1 – 8 of 8) sorted by relevance
| /openbsd-src/gnu/llvm/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 | 237 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText() local 238 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 240 "--", help_text, max_len); in GenerateHelpText()
|
| /openbsd-src/gnu/llvm/clang/docs/tools/ |
| H A D | dump_format_help.py | 55 help_text = get_help_text() variable 56 validate(help_text, 95) 61 contents = substitute(contents, 'FORMAT_HELP', help_text)
|
| /openbsd-src/gnu/usr.bin/texinfo/doc/ |
| H A D | help2man | 177 my ($help_text, $version_text) = map { 243 if ($help_text =~ s/^Usage:( +(\S+))(.*)((?:\n(?: {6}\1| *or: +\S).*)*)//m) 278 $_ = "$help_text\n\n$version_text";
|
| /openbsd-src/gnu/llvm/lldb/source/Interpreter/ |
| H A D | CommandObject.cpp | 394 llvm::StringRef help_text = entry->help_function(); in GetArgumentHelp() local 397 help_text, name_str.GetSize()); in GetArgumentHelp() 399 interpreter.OutputHelpText(str, name_str.GetString(), "--", help_text, in GetArgumentHelp() 404 entry->help_text, name_str.GetSize()); in GetArgumentHelp() 600 std::string help_text(GetHelp()); in GenerateHelpText() local 602 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 604 interpreter.OutputFormattedHelpText(output_strm, "", help_text); in GenerateHelpText() 677 return g_argument_table[arg_type].help_text; in GetArgumentDescriptionAsCString()
|
| H A D | CommandInterpreter.cpp | 2825 llvm::StringRef help_text) { in OutputFormattedHelpText() argument 2830 line_width_max = help_text.size() + prefix.size(); in OutputFormattedHelpText() 2835 if (help_text.empty()) in OutputFormattedHelpText() 2836 help_text = "No help text"; in OutputFormattedHelpText() 2837 while (!help_text.empty()) { in OutputFormattedHelpText() 2846 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText() 2853 if (this_line.size() != help_text.size()) in OutputFormattedHelpText() 2862 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText() 2870 llvm::StringRef help_text, in OutputFormattedHelpText() argument 2875 OutputFormattedHelpText(strm, prefix_stream.GetString(), help_text); in OutputFormattedHelpText() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 430 llvm::StringRef help_text); 434 llvm::StringRef help_text, size_t max_word_len); 443 llvm::StringRef separator, llvm::StringRef help_text,
|
| H A D | CommandObject.h | 89 const char *help_text; member
|