Lines Matching refs:CommandInterpreter

112 const char *CommandInterpreter::g_no_argument = "<no-argument>";
113 const char *CommandInterpreter::g_need_argument = "<need-argument>";
114 const char *CommandInterpreter::g_argument = "<argument>";
125 llvm::StringRef CommandInterpreter::GetStaticBroadcasterClass() { in GetStaticBroadcasterClass()
130 CommandInterpreter::CommandInterpreter(Debugger &debugger, in CommandInterpreter() function in CommandInterpreter
133 CommandInterpreter::GetStaticBroadcasterClass().str()), in CommandInterpreter()
150 bool CommandInterpreter::GetExpandRegexAliases() const { in GetExpandRegexAliases()
156 bool CommandInterpreter::GetPromptOnQuit() const { in GetPromptOnQuit()
162 void CommandInterpreter::SetPromptOnQuit(bool enable) { in SetPromptOnQuit()
167 bool CommandInterpreter::GetSaveTranscript() const { in GetSaveTranscript()
173 void CommandInterpreter::SetSaveTranscript(bool enable) { in SetSaveTranscript()
178 bool CommandInterpreter::GetSaveSessionOnQuit() const { in GetSaveSessionOnQuit()
184 void CommandInterpreter::SetSaveSessionOnQuit(bool enable) { in SetSaveSessionOnQuit()
189 bool CommandInterpreter::GetOpenTranscriptInEditor() const { in GetOpenTranscriptInEditor()
195 void CommandInterpreter::SetOpenTranscriptInEditor(bool enable) { in SetOpenTranscriptInEditor()
200 FileSpec CommandInterpreter::GetSaveSessionDirectory() const { in GetSaveSessionDirectory()
205 void CommandInterpreter::SetSaveSessionDirectory(llvm::StringRef path) { in SetSaveSessionDirectory()
210 bool CommandInterpreter::GetEchoCommands() const { in GetEchoCommands()
216 void CommandInterpreter::SetEchoCommands(bool enable) { in SetEchoCommands()
221 bool CommandInterpreter::GetEchoCommentCommands() const { in GetEchoCommentCommands()
227 void CommandInterpreter::SetEchoCommentCommands(bool enable) { in SetEchoCommentCommands()
232 void CommandInterpreter::AllowExitCodeOnQuit(bool allow) { in AllowExitCodeOnQuit()
238 bool CommandInterpreter::SetQuitExitCode(int exit_code) { in SetQuitExitCode()
245 int CommandInterpreter::GetQuitExitCode(bool &exited) const { in GetQuitExitCode()
252 void CommandInterpreter::ResolveCommand(const char *command_line, in ResolveCommand()
261 bool CommandInterpreter::GetStopCmdSourceOnError() const { in GetStopCmdSourceOnError()
267 bool CommandInterpreter::GetSpaceReplPrompts() const { in GetSpaceReplPrompts()
273 bool CommandInterpreter::GetRepeatPreviousCommand() const { in GetRepeatPreviousCommand()
279 bool CommandInterpreter::GetRequireCommandOverwrite() const { in GetRequireCommandOverwrite()
285 void CommandInterpreter::Initialize() { in Initialize()
541 void CommandInterpreter::Clear() { in Clear()
545 const char *CommandInterpreter::ProcessEmbeddedScriptCommands(const char *arg) { in ProcessEmbeddedScriptCommands()
561 void CommandInterpreter::LoadCommandDictionary() { in LoadCommandDictionary()
945 int CommandInterpreter::GetCommandNamesMatchingPartialString( in GetCommandNamesMatchingPartialString()
959 CommandObjectMultiword *CommandInterpreter::VerifyUserMultiwordCmdPath( in VerifyUserMultiwordCmdPath()
1017 CommandInterpreter::GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, in GetCommandSP()
1143 bool CommandInterpreter::AddCommand(llvm::StringRef name, in AddCommand()
1167 Status CommandInterpreter::AddUserCommand(llvm::StringRef name, in AddUserCommand()
1217 CommandInterpreter::GetCommandSPExact(llvm::StringRef cmd_str, in GetCommandSPExact()
1259 CommandInterpreter::GetCommandObject(llvm::StringRef cmd_str, in GetCommandObject()
1269 CommandObject *CommandInterpreter::GetUserCommandObject( in GetUserCommandObject()
1305 bool CommandInterpreter::CommandExists(llvm::StringRef cmd) const { in CommandExists()
1309 bool CommandInterpreter::GetAliasFullName(llvm::StringRef cmd, in GetAliasFullName()
1339 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists()
1343 bool CommandInterpreter::UserCommandExists(llvm::StringRef cmd) const { in UserCommandExists()
1347 bool CommandInterpreter::UserMultiwordCommandExists(llvm::StringRef cmd) const { in UserMultiwordCommandExists()
1352 CommandInterpreter::AddAlias(llvm::StringRef alias_name, in AddAlias()
1371 bool CommandInterpreter::RemoveAlias(llvm::StringRef alias_name) { in RemoveAlias()
1380 bool CommandInterpreter::RemoveCommand(llvm::StringRef cmd, bool force) { in RemoveCommand()
1393 bool CommandInterpreter::RemoveUser(llvm::StringRef user_name) { in RemoveUser()
1403 bool CommandInterpreter::RemoveUserMultiword(llvm::StringRef multi_name) { in RemoveUserMultiword()
1413 void CommandInterpreter::GetHelp(CommandReturnObject &result, in GetHelp()
1485 CommandObject *CommandInterpreter::GetCommandObjectForCommand( in GetCommandObjectForCommand()
1627 CommandObject *CommandInterpreter::BuildAliasResult( in BuildAliasResult()
1716 Status CommandInterpreter::PreprocessCommand(std::string &command) { in PreprocessCommand()
1769 CommandInterpreter::PreprocessToken(std::string &expr_str) { in PreprocessToken()
1836 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
1847 bool CommandInterpreter::HandleCommand(const char *command_line, in HandleCommand()
2063 void CommandInterpreter::HandleCompletionMatches(CompletionRequest &request) { in HandleCompletionMatches()
2110 void CommandInterpreter::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
2131 CommandInterpreter::GetAutoSuggestionForCommand(llvm::StringRef line) { in GetAutoSuggestionForCommand()
2143 void CommandInterpreter::UpdatePrompt(llvm::StringRef new_prompt) { in UpdatePrompt()
2152 bool CommandInterpreter::Confirm(llvm::StringRef message, bool default_answer) { in Confirm()
2165 CommandInterpreter::GetAlias(llvm::StringRef alias_name) const { in GetAlias()
2175 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands()
2177 bool CommandInterpreter::HasAliases() const { return (!m_alias_dict.empty()); } in HasAliases()
2179 bool CommandInterpreter::HasUserCommands() const { return (!m_user_dict.empty()); } in HasUserCommands()
2181 bool CommandInterpreter::HasUserMultiwordCommands() const { in HasUserMultiwordCommands()
2185 bool CommandInterpreter::HasAliasOptions() const { return HasAliases(); } in HasAliasOptions()
2187 void CommandInterpreter::BuildAliasCommandArgs(CommandObject *alias_cmd_obj, in BuildAliasCommandArgs()
2301 int CommandInterpreter::GetOptionArgumentPosition(const char *in_string) { in GetOptionArgumentPosition()
2368 void CommandInterpreter::SourceInitFile(FileSpec file, in SourceInitFile()
2390 void CommandInterpreter::SourceInitFileCwd(CommandReturnObject &result) { in SourceInitFileCwd()
2430 void CommandInterpreter::SourceInitFileHome(CommandReturnObject &result, in SourceInitFileHome()
2457 void CommandInterpreter::SourceInitFileGlobal(CommandReturnObject &result) { in SourceInitFileGlobal()
2472 const char *CommandInterpreter::GetCommandPrefix() { in GetCommandPrefix()
2477 PlatformSP CommandInterpreter::GetPlatform(bool prefer_target_platform) { in GetPlatform()
2491 bool CommandInterpreter::DidProcessStopAbnormally() const { in DidProcessStopAbnormally()
2538 CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2548 void CommandInterpreter::HandleCommands(const StringList &commands, in HandleCommands()
2681 void CommandInterpreter::HandleCommandsFromFile( in HandleCommandsFromFile()
2689 void CommandInterpreter::HandleCommandsFromFile(FileSpec &cmd_file, in HandleCommandsFromFile()
2803 debugger, IOHandler::Type::CommandInterpreter, input_file_sp, in HandleCommandsFromFile()
2834 bool CommandInterpreter::GetSynchronous() { return m_synchronous_execution; } in GetSynchronous()
2836 void CommandInterpreter::SetSynchronous(bool value) { in SetSynchronous()
2840 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2884 void CommandInterpreter::OutputFormattedHelpText(Stream &strm, in OutputFormattedHelpText()
2895 void CommandInterpreter::OutputHelpText(Stream &strm, llvm::StringRef word_text, in OutputHelpText()
2939 void CommandInterpreter::FindCommandsForApropos( in FindCommandsForApropos()
2971 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, in FindCommandsForApropos()
2997 ExecutionContext CommandInterpreter::GetExecutionContext() const { in GetExecutionContext()
3003 void CommandInterpreter::OverrideExecutionContext( in OverrideExecutionContext()
3008 void CommandInterpreter::RestoreExecutionContext() { in RestoreExecutionContext()
3013 void CommandInterpreter::GetProcessOutput() { in GetProcessOutput()
3019 void CommandInterpreter::StartHandlingCommand() { in StartHandlingCommand()
3029 void CommandInterpreter::FinishHandlingCommand() { in FinishHandlingCommand()
3037 bool CommandInterpreter::InterruptCommand() { in InterruptCommand()
3043 bool CommandInterpreter::WasInterrupted() const { in WasInterrupted()
3053 void CommandInterpreter::PrintCommandOutput(IOHandler &io_handler, in PrintCommandOutput()
3078 bool CommandInterpreter::EchoCommandNonInteractive( in EchoCommandNonInteractive()
3093 void CommandInterpreter::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
3197 bool CommandInterpreter::IOHandlerInterrupt(IOHandler &io_handler) { in IOHandlerInterrupt()
3221 bool CommandInterpreter::SaveTranscript( in SaveTranscript()
3285 bool CommandInterpreter::IsInteractive() { in IsInteractive()
3289 FileSpec CommandInterpreter::GetCurrentSourceDir() { in GetCurrentSourceDir()
3295 void CommandInterpreter::GetLLDBCommandsFromIOHandler( in GetLLDBCommandsFromIOHandler()
3314 void CommandInterpreter::GetPythonCommandsFromIOHandler( in GetPythonCommandsFromIOHandler()
3333 bool CommandInterpreter::IsActive() { in IsActive()
3338 CommandInterpreter::GetIOHandler(bool force_create, in GetIOHandler()
3372 m_debugger, IOHandler::Type::CommandInterpreter, in GetIOHandler()
3384 CommandInterpreterRunResult CommandInterpreter::RunCommandInterpreter( in RunCommandInterpreter()
3414 CommandInterpreter::ResolveCommandImpl(std::string &command_line, in ResolveCommandImpl()
3574 llvm::json::Value CommandInterpreter::GetStatistics() { in GetStatistics()
3581 const StructuredData::Array &CommandInterpreter::GetTranscript() const { in GetTranscript()