Home
last modified time | relevance | path

Searched refs:CommandObjectRegexCommand (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/lldb/source/Commands/
DCommandObjectRegexCommand.h22 class CommandObjectRegexCommand : public CommandObjectRaw {
24 CommandObjectRegexCommand(CommandInterpreter &interpreter,
29 ~CommandObjectRegexCommand() override;
54 CommandObjectRegexCommand(const CommandObjectRegexCommand &) = delete;
55 const CommandObjectRegexCommand &
56 operator=(const CommandObjectRegexCommand &) = delete;
DCommandObjectRegexCommand.cpp17 CommandObjectRegexCommand::CommandObjectRegexCommand( in CommandObjectRegexCommand() function in CommandObjectRegexCommand
26 CommandObjectRegexCommand::~CommandObjectRegexCommand() {} in ~CommandObjectRegexCommand()
28 bool CommandObjectRegexCommand::DoExecute(llvm::StringRef command, in DoExecute()
71 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand()
85 void CommandObjectRegexCommand::HandleCompletion(CompletionRequest &request) { in HandleCompletion()
DCMakeLists.txt24 CommandObjectRegexCommand.cpp
DCommandObjectCommands.cpp864 m_regex_cmd_up = std::make_unique<CommandObjectRegexCommand>( in DoExecute()
1010 std::unique_ptr<CommandObjectRegexCommand> m_regex_cmd_up;
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp544 std::unique_ptr<CommandObjectRegexCommand> break_regex_cmd_up( in LoadCommandDictionary()
545 new CommandObjectRegexCommand( in LoadCommandDictionary()
598 std::unique_ptr<CommandObjectRegexCommand> tbreak_regex_cmd_up( in LoadCommandDictionary()
599 new CommandObjectRegexCommand( in LoadCommandDictionary()
654 std::unique_ptr<CommandObjectRegexCommand> attach_regex_cmd_up( in LoadCommandDictionary()
655 new CommandObjectRegexCommand( in LoadCommandDictionary()
674 std::unique_ptr<CommandObjectRegexCommand> down_regex_cmd_up( in LoadCommandDictionary()
675 new CommandObjectRegexCommand(*this, "_regexp-down", in LoadCommandDictionary()
690 std::unique_ptr<CommandObjectRegexCommand> up_regex_cmd_up( in LoadCommandDictionary()
691 new CommandObjectRegexCommand( in LoadCommandDictionary()
[all …]