Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp166 std::string help_text(std::string(pos->second->GetHelp())); in GenerateHelpText()
172 "--", pos->second->GetHelp(), in GenerateHelpText()
245 commands_help.AppendString(sub_cmd_obj->GetHelp()); in AproposAllSubCommands()
269 llvm::StringRef CommandObjectProxy::GetHelp() { in GetHelp() function in CommandObjectProxy
272 return proxy_command->GetHelp(); in GetHelp()
273 return CommandObject::GetHelp(); in GetHelp()
H A DCommandObjectCommands.cpp605 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
694 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
835 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 10, 0, in DoExecute()
1015 llvm::StringRef GetHelp() { return m_help; } in GetHelp() function in CommandObjectCommandsAddRegex::CommandOptions
1125 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObject
1127 return CommandObjectRaw::GetHelp(); in GetHelp()
1130 return CommandObjectRaw::GetHelp(); in GetHelp()
1137 return CommandObjectRaw::GetHelp(); in GetHelp()
1565 m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef); in DoExecute()
1629 request.TryCompleteCurrentArg(c.first, c.second->GetHelp()); in HandleArgumentCompletion()
H A DCommandObjectHelp.cpp94 m_interpreter.GetHelp(result, cmd_types); // General help in DoExecute()
/freebsd-13.1/contrib/llvm-project/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.cpp53 llvm::StringRef CommandObject::GetHelp() { return m_cmd_help_short; } in GetHelp() function in CommandObject
315 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord()
854 std::string help_text(GetHelp()); in GenerateHelpText()
H A DCommandInterpreter.cpp995 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1123 descriptions->AppendString(command_obj->GetHelp()); in GetCommandObject()
1222 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp() function in CommandInterpreter
1243 pos->second->GetHelp(), max_len); in GetHelp()
1260 alias_pos->second->GetHelp(), max_len); in GetHelp()
1272 pos->second->GetHelp(), max_len); in GetHelp()
2693 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandAlias.h51 llvm::StringRef GetHelp() override;
H A DCommandObject.h47 descriptions->AppendString(iter->second->GetHelp());
127 virtual llvm::StringRef GetHelp();
H A DCommandObjectMultiword.h87 llvm::StringRef GetHelp() override;
H A DCommandInterpreter.h371 void GetHelp(CommandReturnObject &result,
/freebsd-13.1/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp649 const char *SBCommand::GetHelp() { in GetHelp() function in SBCommand
650 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBCommand, GetHelp); in GetHelp()
652 return (IsValid() ? ConstString(m_opaque_sp->GetHelp()).AsCString() in GetHelp()
849 LLDB_REGISTER_METHOD(const char *, SBCommand, GetHelp, ()); in RegisterMethods()
H A DSBBreakpointName.cpp517 return bp_name->GetHelp(); in GetHelpString()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h299 const char *GetHelp();
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h189 const char *GetHelp() in GetHelp() function