Searched refs:CommandObjectRegexCommand (Results 1 – 5 of 5) sorted by relevance
22 class CommandObjectRegexCommand : public CommandObjectRaw {24 CommandObjectRegexCommand(CommandInterpreter &interpreter,29 ~CommandObjectRegexCommand() override;58 CommandObjectRegexCommand(const CommandObjectRegexCommand &) = delete;59 const CommandObjectRegexCommand &60 operator=(const CommandObjectRegexCommand &) = delete;
20 CommandObjectRegexCommand::CommandObjectRegexCommand( in CommandObjectRegexCommand() function in CommandObjectRegexCommand28 CommandObjectRegexCommand::~CommandObjectRegexCommand() = default;30 llvm::Expected<std::string> CommandObjectRegexCommand::SubstituteVariables( in SubstituteVariables()57 void CommandObjectRegexCommand::DoExecute(llvm::StringRef command, in DoExecute()91 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand()105 void CommandObjectRegexCommand::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
11 #include "CommandObjectRegexCommand.h"832 m_regex_cmd_up = std::make_unique<CommandObjectRegexCommand>( in IOHandlerActivated() 975 std::unique_ptr<CommandObjectRegexCommand> m_regex_cmd_up; in AppendRegexSubstitution()
34 #include "Commands/CommandObjectRegexCommand.h"616 std::unique_ptr<CommandObjectRegexCommand> break_regex_cmd_up( in LoadCommandDictionary() 617 new CommandObjectRegexCommand( in LoadCommandDictionary() 667 std::unique_ptr<CommandObjectRegexCommand> tbreak_regex_cmd_up( in LoadCommandDictionary() 668 new CommandObjectRegexCommand( in LoadCommandDictionary() 720 std::unique_ptr<CommandObjectRegexCommand> attach_regex_cmd_up( in LoadCommandDictionary() 721 new CommandObjectRegexCommand( in LoadCommandDictionary() 740 std::unique_ptr<CommandObjectRegexCommand> down_regex_cmd_up( in LoadCommandDictionary() 741 new CommandObjectRegexCommand(*this, "_regexp-down", in LoadCommandDictionary() 756 std::unique_ptr<CommandObjectRegexCommand> up_regex_cmd_u in LoadCommandDictionary() [all...]
143 SRCS+= Commands/CommandObjectRegexCommand.cpp