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.cpp251 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText()
257 "--", pos->second->GetHelp(), in GenerateHelpText()
330 llvm::StringRef CommandObjectProxy::GetHelp() { in GetHelp() function in CommandObjectProxy
333 return proxy_command->GetHelp(); in GetHelp()
334 return CommandObject::GetHelp(); in GetHelp()
H A DCommandObjectCommands.cpp624 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
700 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
842 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 0, in DoExecute()
1021 llvm::StringRef GetHelp() { return m_help; } in GetHelp() function in CommandObjectCommandsAddRegex::CommandOptions
1164 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObjectRaw
1166 return CommandObjectRaw::GetHelp(); in GetHelp()
1169 return CommandObjectRaw::GetHelp(); in GetHelp()
1176 return CommandObjectRaw::GetHelp(); in GetHelp()
2087 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObjectParsed
2089 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.cpp101 GetUnderlyingCommand()->GetHelp().str().c_str()); in CommandAlias()
235 llvm::StringRef CommandAlias::GetHelp() { in GetHelp() function in CommandAlias
239 return m_underlying_command_sp->GetHelp(); in GetHelp()
H A DCommandObject.cpp54 llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; } in GetHelp() function in CommandObject
347 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord()
665 std::string help_text(GetHelp()); in GenerateHelpText()
H A DCommandInterpreter.cpp1193 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1339 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject()
1378 descriptions->AppendString(exact_cmd->GetHelp()); in GetAliasCommandObject()
1501 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp() function in CommandInterpreter
1522 pos->second->GetHelp(), max_len); in GetHelp()
1539 alias_pos->second->GetHelp(), max_len); in GetHelp()
1551 pos->second->GetHelp(), max_len); in GetHelp()
1563 pos->second->GetHelp(), max_len); in GetHelp()
3107 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(cmd->GetHelp());
128 virtual llvm::StringRef GetHelp();
H A DCommandObjectMultiword.h93 llvm::StringRef GetHelp() override;
H A DCommandInterpreter.h447 void GetHelp(CommandReturnObject &result,
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h178 const char *GetHelp() in GetHelp() function
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h374 const char *GetHelp();
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp668 const char *SBCommand::GetHelp() { in GetHelp() function in SBCommand
671 return (IsValid() ? ConstString(m_opaque_sp->GetHelp()).AsCString() in GetHelp()
H A DSBBreakpointName.cpp502 return ConstString(bp_name->GetHelp()).GetCString(); in GetHelpString()