Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegexCommand.h22 class CommandObjectRegexCommand : public CommandObjectRaw {
24 CommandObjectRegexCommand(CommandInterpreter &interpreter,
29 ~CommandObjectRegexCommand() override;
58 CommandObjectRegexCommand(const CommandObjectRegexCommand &) = delete;
59 const CommandObjectRegexCommand &
60 operator=(const CommandObjectRegexCommand &) = delete;
H A DCommandObjectRegexCommand.cpp20 CommandObjectRegexCommand::CommandObjectRegexCommand( in CommandObjectRegexCommand() function in CommandObjectRegexCommand
28 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()
H A DCommandObjectCommands.cpp11 #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()
/freebsd-src/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp34 #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...]
/freebsd-src/lib/clang/liblldb/
H A DMakefile143 SRCS+= Commands/CommandObjectRegexCommand.cpp