Home
last modified time | relevance | path

Searched refs:AddRegexCommand (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp652 success = break_regex_cmd_up->AddRegexCommand(break_regexes[i][0], in LoadCommandDictionary()
658 break_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
706 tbreak_regex_cmd_up->AddRegexCommand(break_regexes[i][0], command); in LoadCommandDictionary()
711 tbreak_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary()
725 if (attach_regex_cmd_up->AddRegexCommand("^([0-9]+)[[:space:]]*$", in LoadCommandDictionary()
727 attach_regex_cmd_up->AddRegexCommand( in LoadCommandDictionary()
731 attach_regex_cmd_up->AddRegexCommand("^(.+)$", in LoadCommandDictionary()
733 attach_regex_cmd_up->AddRegexCommand("^$", "process attach")) { in LoadCommandDictionary()
747 if (down_regex_cmd_up->AddRegexCommand("^$", "frame select -r -1") && in LoadCommandDictionary()
748 down_regex_cmd_up->AddRegexCommand("^([0-9]+)$", in LoadCommandDictionary()
[all …]
/src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectRegexCommand.h33 bool AddRegexCommand(llvm::StringRef re_cstr, llvm::StringRef command_cstr);
H A DCommandObjectRegexCommand.cpp91 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand() function in CommandObjectRegexCommand
H A DCommandObjectCommands.cpp960 m_regex_cmd_up->AddRegexCommand(regex, subst); in AppendRegexSubstitution()