Searched refs:help_text (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/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 | 241 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText() local 242 help_text.append(" Expects 'raw' input (see 'help raw-input'.)"); in GenerateHelpText() 244 "--", help_text, max_len); in GenerateHelpText()
|
| /llvm-project-15.0.7/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)
|
| /llvm-project-15.0.7/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 | 2782 line_width_max = help_text.size() + prefix.size(); in OutputFormattedHelpText() 2787 if (help_text.empty()) in OutputFormattedHelpText() 2788 help_text = "No help text"; in OutputFormattedHelpText() 2789 while (!help_text.empty()) { in OutputFormattedHelpText() 2798 llvm::StringRef this_line = help_text.substr(0, line_width_max); in OutputFormattedHelpText() 2805 if (this_line.size() != help_text.size()) in OutputFormattedHelpText() 2814 help_text = help_text.drop_front(this_line.size()).ltrim(); in OutputFormattedHelpText() 2822 llvm::StringRef help_text, in OutputFormattedHelpText() argument 2827 OutputFormattedHelpText(strm, prefix_stream.GetString(), help_text); in OutputFormattedHelpText() 2832 llvm::StringRef help_text, in OutputHelpText() argument [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 421 llvm::StringRef help_text); 425 llvm::StringRef help_text, size_t max_word_len); 434 llvm::StringRef separator, llvm::StringRef help_text,
|
| H A D | CommandObject.h | 87 const char *help_text; member
|
| /llvm-project-15.0.7/polly/utils/ |
| H A D | argparse.py | 544 help_text = self._expand_help(action) 545 help_lines = self._split_lines(help_text, help_width)
|