Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp236 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText()
242 "--", pos->second->GetHelp(), in GenerateHelpText()
315 llvm::StringRef CommandObjectProxy::GetHelp() {
318 return proxy_command->GetHelp(); in GetHelp()
319 return CommandObject::GetHelp(); in GetHelp()
316 llvm::StringRef CommandObjectProxy::GetHelp() { GetHelp() function in CommandObjectProxy
H A DCommandObjectCommands.cpp617 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
693 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
833 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 0, in DoExecute()
1011 llvm::StringRef GetHelp() { return m_help; } in GetHelp() function in CommandObjectCommandsAddRegex::CommandOptions
1154 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObjectRaw
1156 return CommandObjectRaw::GetHelp(); in GetHelp()
1159 return CommandObjectRaw::GetHelp(); in GetHelp()
1166 return CommandObjectRaw::GetHelp(); in GetHelp()
1850 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObjectParsed
1852 return CommandObjectParsed::GetHelp(); in GetHelp()
[all …]
H A DCommandObjectHelp.cpp86 m_interpreter.GetHelp(result, cmd_types); // General help in DoExecute()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandAlias.cpp102 GetUnderlyingCommand()->GetHelp().str().c_str()); in CommandAlias()
236 llvm::StringRef CommandAlias::GetHelp() { in GetHelp() function in CommandAlias
240 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
354 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord()
672 std::string help_text(GetHelp()); in GenerateHelpText()
H A DCommandInterpreter.cpp1137 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1281 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject()
1413 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp() function in CommandInterpreter
1434 pos->second->GetHelp(), max_len); in GetHelp()
1451 alias_pos->second->GetHelp(), max_len); in GetHelp()
1463 pos->second->GetHelp(), max_len); in GetHelp()
1475 pos->second->GetHelp(), max_len); in GetHelp()
2955 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h51 llvm::StringRef GetHelp() override;
H A DCommandObject.h49 descriptions->AppendString(iter->second->GetHelp());
127 virtual llvm::StringRef GetHelp();
H A DCommandObjectMultiword.h91 llvm::StringRef GetHelp() override;
H A DCommandInterpreter.h440 void GetHelp(CommandReturnObject &result,
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h177 const char *GetHelp() in GetHelp() function
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h372 const char *GetHelp();
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp655 const char *SBCommand::GetHelp() { in GetHelp() function in SBCommand
658 return (IsValid() ? ConstString(m_opaque_sp->GetHelp()).AsCString() in GetHelp()
H A DSBBreakpointName.cpp501 return ConstString(bp_name->GetHelp()).GetCString(); in GetHelpString()