Home
last modified time | relevance | path

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

/freebsd-14.2/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() { in GetHelp() function in CommandObjectProxy
318 return proxy_command->GetHelp(); in GetHelp()
319 return CommandObject::GetHelp(); in GetHelp()
H A DCommandObjectCommands.cpp648 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
736 request.TryCompleteCurrentArg(ent.first, ent.second->GetHelp()); in HandleArgumentCompletion()
877 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 0, in DoExecute()
1055 llvm::StringRef GetHelp() { return m_help; } in GetHelp() function in CommandObjectCommandsAddRegex::CommandOptions
1184 llvm::StringRef GetHelp() override { in GetHelp() function in CommandObjectScriptingObject
1186 return CommandObjectRaw::GetHelp(); in GetHelp()
1189 return CommandObjectRaw::GetHelp(); in GetHelp()
1196 return CommandObjectRaw::GetHelp(); in GetHelp()
1674 m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef); in DoExecute()
H A DCommandObjectHelp.cpp97 m_interpreter.GetHelp(result, cmd_types); // General help in DoExecute()
/freebsd-14.2/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
317 llvm::StringRef short_help = GetHelp(); in HelpTextContainsWord()
600 std::string help_text(GetHelp()); in GenerateHelpText()
H A DCommandInterpreter.cpp1114 descriptions->AppendString(command_sp->GetHelp()); in GetCommandSP()
1258 descriptions->AppendString(exact_cmd->GetHelp()); in GetUserCommandObject()
1390 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp() function in CommandInterpreter
1411 pos->second->GetHelp(), max_len); in GetHelp()
1428 alias_pos->second->GetHelp(), max_len); in GetHelp()
1440 pos->second->GetHelp(), max_len); in GetHelp()
1452 pos->second->GetHelp(), max_len); in GetHelp()
2941 commands_help.AppendString(cmd_obj->GetHelp()); in FindCommandsForApropos()
/freebsd-14.2/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.h426 void GetHelp(CommandReturnObject &result,
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointName.h177 const char *GetHelp() in GetHelp() function
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h356 const char *GetHelp();
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp625 const char *SBCommand::GetHelp() { in GetHelp() function in SBCommand
628 return (IsValid() ? ConstString(m_opaque_sp->GetHelp()).AsCString() in GetHelp()
H A DSBBreakpointName.cpp501 return ConstString(bp_name->GetHelp()).GetCString(); in GetHelpString()