Home
last modified time | relevance | path

Searched refs:GetHelp (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMultiword.cpp241 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText()
247 "--", pos->second->GetHelp(), in GenerateHelpText()
320 llvm::StringRef CommandObjectProxy::GetHelp() { in GetHelp() function in CommandObjectProxy
323 return proxy_command->GetHelp(); in GetHelp()
324 return CommandObject::GetHelp(); in GetHelp()
H A DCommandObjectCommands.cpp649 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
738 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
880 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 10, 0, in DoExecute()
1060 llvm::StringRef GetHelp() { return m_help; } in GetHelp() function in CommandObjectCommandsAddRegex::CommandOptions
1170 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObject
1172 return CommandObjectRaw::GetHelp(); in GetHelp()
1175 return CommandObjectRaw::GetHelp(); in GetHelp()
1182 return CommandObjectRaw::GetHelp(); in GetHelp()
1647 m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef); in DoExecute()
H A DCommandObjectHelp.cpp97 m_interpreter.GetHelp(result, cmd_types); // General help in DoExecute()
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandAlias.cpp100 GetUnderlyingCommand()->GetHelp().str().c_str()); in CommandAlias()
231 llvm::StringRef CommandAlias::GetHelp() { in GetHelp() function in CommandAlias
235 return m_underlying_command_sp->GetHelp(); in GetHelp()
H A DCommandObject.cpp55 llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; } in GetHelp() function in CommandObject
317 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord()
600 std::string help_text(GetHelp()); in GenerateHelpText()
H A DCommandInterpreter.cpp1093 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1239 descriptions->AppendString(command_obj->GetHelp()); in GetCommandObject()
1258 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject()
1389 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp() function in CommandInterpreter
1410 pos->second->GetHelp(), max_len); in GetHelp()
1427 alias_pos->second->GetHelp(), max_len); in GetHelp()
1439 pos->second->GetHelp(), max_len); in GetHelp()
1451 pos->second->GetHelp(), max_len); in GetHelp()
2890 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandAlias.h51 llvm::StringRef GetHelp() override;
H A DCommandObject.h47 descriptions->AppendString(iter->second->GetHelp());
125 virtual llvm::StringRef GetHelp();
H A DCommandObjectMultiword.h90 llvm::StringRef GetHelp() override;
H A DCommandInterpreter.h415 void GetHelp(CommandReturnObject &result,
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h189 const char *GetHelp() in GetHelp() function
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreter.h303 const char *GetHelp();
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp604 const char *SBCommand::GetHelp() { in GetHelp() function in SBCommand
607 return (IsValid() ? ConstString(m_opaque_sp->GetHelp()).AsCString() in GetHelp()
H A DSBBreakpointName.cpp499 return bp_name->GetHelp(); in GetHelpString()