Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp583 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/
DCommandObjectRegexCommand.h33 bool AddRegexCommand(llvm::StringRef re_cstr, llvm::StringRef command_cstr);
DCommandObjectRegexCommand.cpp71 bool CommandObjectRegexCommand::AddRegexCommand(llvm::StringRef re_cstr, in AddRegexCommand() function in CommandObjectRegexCommand
DCommandObjectCommands.cpp995 m_regex_cmd_up->AddRegexCommand(regex, subst); in AppendRegexSubstitution()