Searched refs:AddRegexCommand (Results 1 – 4 of 4) sorted by relevance
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandInterpreter.cpp | 583 success = break_regex_cmd_up->AddRegexCommand(break_regexes[i][0], in LoadCommandDictionary() 589 break_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary() 640 tbreak_regex_cmd_up->AddRegexCommand(break_regexes[i][0], command); in LoadCommandDictionary() 645 tbreak_regex_cmd_up->AddRegexCommand("^$", "breakpoint list --full"); in LoadCommandDictionary() 659 if (attach_regex_cmd_up->AddRegexCommand("^([0-9]+)[[:space:]]*$", in LoadCommandDictionary() 661 attach_regex_cmd_up->AddRegexCommand( in LoadCommandDictionary() 665 attach_regex_cmd_up->AddRegexCommand("^(.+)$", in LoadCommandDictionary() 667 attach_regex_cmd_up->AddRegexCommand("^$", "process attach")) { in LoadCommandDictionary() 681 if (down_regex_cmd_up->AddRegexCommand("^$", "frame select -r -1") && in LoadCommandDictionary() 682 down_regex_cmd_up->AddRegexCommand("^([0-9]+)$", in LoadCommandDictionary() [all …]
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectRegexCommand.h | 33 bool AddRegexCommand(llvm::StringRef re_cstr, llvm::StringRef command_cstr);
|
D | CommandObjectRegexCommand.cpp | 71 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand() function in CommandObjectRegexCommand
|
D | CommandObjectCommands.cpp | 995 m_regex_cmd_up->AddRegexCommand(regex, subst); in AppendRegexSubstitution()
|