Lines Matching refs:CommandInterpreter

109 const char *CommandInterpreter::g_no_argument = "<no-argument>";
110 const char *CommandInterpreter::g_need_argument = "<need-argument>";
111 const char *CommandInterpreter::g_argument = "<argument>";
122 ConstString &CommandInterpreter::GetStaticBroadcasterClass() { in GetStaticBroadcasterClass()
127 CommandInterpreter::CommandInterpreter(Debugger &debugger, in CommandInterpreter() function in CommandInterpreter
130 CommandInterpreter::GetStaticBroadcasterClass().AsCString()), in CommandInterpreter()
147 bool CommandInterpreter::GetExpandRegexAliases() const { in GetExpandRegexAliases()
153 bool CommandInterpreter::GetPromptOnQuit() const { in GetPromptOnQuit()
159 void CommandInterpreter::SetPromptOnQuit(bool enable) { in SetPromptOnQuit()
164 bool CommandInterpreter::GetSaveSessionOnQuit() const { in GetSaveSessionOnQuit()
170 void CommandInterpreter::SetSaveSessionOnQuit(bool enable) { in SetSaveSessionOnQuit()
175 bool CommandInterpreter::GetOpenTranscriptInEditor() const { in GetOpenTranscriptInEditor()
181 void CommandInterpreter::SetOpenTranscriptInEditor(bool enable) { in SetOpenTranscriptInEditor()
186 FileSpec CommandInterpreter::GetSaveSessionDirectory() const { in GetSaveSessionDirectory()
191 void CommandInterpreter::SetSaveSessionDirectory(llvm::StringRef path) { in SetSaveSessionDirectory()
196 bool CommandInterpreter::GetEchoCommands() const { in GetEchoCommands()
202 void CommandInterpreter::SetEchoCommands(bool enable) { in SetEchoCommands()
207 bool CommandInterpreter::GetEchoCommentCommands() const { in GetEchoCommentCommands()
213 void CommandInterpreter::SetEchoCommentCommands(bool enable) { in SetEchoCommentCommands()
218 void CommandInterpreter::AllowExitCodeOnQuit(bool allow) { in AllowExitCodeOnQuit()
224 bool CommandInterpreter::SetQuitExitCode(int exit_code) { in SetQuitExitCode()
231 int CommandInterpreter::GetQuitExitCode(bool &exited) const { in GetQuitExitCode()
238 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand()
247 bool CommandInterpreter::GetStopCmdSourceOnError() const { in GetStopCmdSourceOnError()
253 bool CommandInterpreter::GetSpaceReplPrompts() const { in GetSpaceReplPrompts()
259 bool CommandInterpreter::GetRepeatPreviousCommand() const { in GetRepeatPreviousCommand()
265 bool CommandInterpreter::GetRequireCommandOverwrite() const { in GetRequireCommandOverwrite()
271 void CommandInterpreter::Initialize() { in Initialize()
509 void CommandInterpreter::Clear() { in Clear()
513 const char *CommandInterpreter::ProcessEmbeddedScriptCommands(const char *arg) { in ProcessEmbeddedScriptCommands()
529 void CommandInterpreter::LoadCommandDictionary() { in LoadCommandDictionary()
919 int CommandInterpreter::GetCommandNamesMatchingPartialString( in GetCommandNamesMatchingPartialString()
933 CommandObjectMultiword *CommandInterpreter::VerifyUserMultiwordCmdPath( in VerifyUserMultiwordCmdPath()
991 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP()
1117 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand()
1141 Status CommandInterpreter::AddUserCommand(llvm::StringRef name, in AddUserCommand()
1187 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact()
1229 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject()
1264 CommandObject *CommandInterpreter::GetUserCommandObject( in GetUserCommandObject()
1300 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists()
1304 bool CommandInterpreter::GetAliasFullName(llvm::StringRef cmd, in GetAliasFullName()
1334 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists()
1338 bool CommandInterpreter::UserCommandExists(llvm::StringRef cmd) const { in UserCommandExists()
1342 bool CommandInterpreter::UserMultiwordCommandExists(llvm::StringRef cmd) const { in UserMultiwordCommandExists()
1347 CommandInterpreter::AddAlias(llvm::StringRef alias_name, in AddAlias()
1366 bool CommandInterpreter::RemoveAlias(llvm::StringRef alias_name) { in RemoveAlias()
1375 bool CommandInterpreter::RemoveCommand(llvm::StringRef cmd) { in RemoveCommand()
1387 bool CommandInterpreter::RemoveUser(llvm::StringRef user_name) { in RemoveUser()
1397 bool CommandInterpreter::RemoveUserMultiword(llvm::StringRef multi_name) { in RemoveUserMultiword()
1407 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp()
1479 CommandObject *CommandInterpreter::GetCommandObjectForCommand( in GetCommandObjectForCommand()
1621 CommandObject *CommandInterpreter::BuildAliasResult( in BuildAliasResult()
1711 Status CommandInterpreter::PreprocessCommand(std::string &command) { in PreprocessCommand()
1862 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
1873 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
2047 void CommandInterpreter::HandleCompletionMatches(CompletionRequest &request) { in HandleCompletionMatches()
2094 void CommandInterpreter::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
2115 CommandInterpreter::GetAutoSuggestionForCommand(llvm::StringRef line) { in GetAutoSuggestionForCommand()
2127 void CommandInterpreter::UpdatePrompt(llvm::StringRef new_prompt) { in UpdatePrompt()
2136 bool CommandInterpreter::Confirm(llvm::StringRef message, bool default_answer) { in Confirm()
2149 CommandInterpreter::GetAlias(llvm::StringRef alias_name) const { in GetAlias()
2159 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2161 bool CommandInterpreter::HasAliases() const { return (!m_alias_dict.empty()); } in HasAliases()
2163 bool CommandInterpreter::HasUserCommands() const { return (!m_user_dict.empty()); } in HasUserCommands()
2165 bool CommandInterpreter::HasUserMultiwordCommands() const { in HasUserMultiwordCommands()
2169 bool CommandInterpreter::HasAliasOptions() const { return HasAliases(); } in HasAliasOptions()
2171 void CommandInterpreter::BuildAliasCommandArgs(CommandObject *alias_cmd_obj, in BuildAliasCommandArgs()
2285 int CommandInterpreter::GetOptionArgumentPosition(const char *in_string) { in GetOptionArgumentPosition()
2352 void CommandInterpreter::SourceInitFile(FileSpec file, in SourceInitFile()
2374 void CommandInterpreter::SourceInitFileCwd(CommandReturnObject &result) { in SourceInitFileCwd()
2414 void CommandInterpreter::SourceInitFileHome(CommandReturnObject &result, in SourceInitFileHome()
2441 void CommandInterpreter::SourceInitFileGlobal(CommandReturnObject &result) { in SourceInitFileGlobal()
2456 const char *CommandInterpreter::GetCommandPrefix() { in GetCommandPrefix()
2461 PlatformSP CommandInterpreter::GetPlatform(bool prefer_target_platform) { in GetPlatform()
2475 bool CommandInterpreter::DidProcessStopAbnormally() const { in DidProcessStopAbnormally()
2522 CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2532 void CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2664 void CommandInterpreter::HandleCommandsFromFile( in HandleCommandsFromFile()
2672 void CommandInterpreter::HandleCommandsFromFile(FileSpec &cmd_file, in HandleCommandsFromFile()
2786 debugger, IOHandler::Type::CommandInterpreter, input_file_sp, in HandleCommandsFromFile()
2817 bool CommandInterpreter::GetSynchronous() { return m_synchronous_execution; } in GetSynchronous()
2819 void CommandInterpreter::SetSynchronous(bool value) { in SetSynchronous()
2823 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2867 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2878 void CommandInterpreter::OutputHelpText(Stream &strm, llvm::StringRef word_text, in OutputHelpText()
2922 void CommandInterpreter::FindCommandsForApropos( in FindCommandsForApropos()
2954 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, in FindCommandsForApropos()
2980 ExecutionContext CommandInterpreter::GetExecutionContext() const { in GetExecutionContext()
2986 void CommandInterpreter::OverrideExecutionContext( in OverrideExecutionContext()
2991 void CommandInterpreter::RestoreExecutionContext() { in RestoreExecutionContext()
2996 void CommandInterpreter::GetProcessOutput() { in GetProcessOutput()
3002 void CommandInterpreter::StartHandlingCommand() { in StartHandlingCommand()
3012 void CommandInterpreter::FinishHandlingCommand() { in FinishHandlingCommand()
3020 bool CommandInterpreter::InterruptCommand() { in InterruptCommand()
3026 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted()
3033 void CommandInterpreter::PrintCommandOutput(IOHandler &io_handler, in PrintCommandOutput()
3056 bool CommandInterpreter::EchoCommandNonInteractive( in EchoCommandNonInteractive()
3071 void CommandInterpreter::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
3170 bool CommandInterpreter::IOHandlerInterrupt(IOHandler &io_handler) { in IOHandlerInterrupt()
3194 bool CommandInterpreter::SaveTranscript( in SaveTranscript()
3253 bool CommandInterpreter::IsInteractive() { in IsInteractive()
3257 FileSpec CommandInterpreter::GetCurrentSourceDir() { in GetCurrentSourceDir()
3263 void CommandInterpreter::GetLLDBCommandsFromIOHandler( in GetLLDBCommandsFromIOHandler()
3282 void CommandInterpreter::GetPythonCommandsFromIOHandler( in GetPythonCommandsFromIOHandler()
3301 bool CommandInterpreter::IsActive() { in IsActive()
3306 CommandInterpreter::GetIOHandler(bool force_create, in GetIOHandler()
3338 m_debugger, IOHandler::Type::CommandInterpreter, in GetIOHandler()
3350 CommandInterpreterRunResult CommandInterpreter::RunCommandInterpreter( in RunCommandInterpreter()
3374 CommandInterpreter::ResolveCommandImpl(std::string &command_line, in ResolveCommandImpl()