Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DCommandInterpreter.cpp587 list_regex_cmd_ap(new CommandObjectRegexCommand (*this, in LoadCommandDictionary() local
593 if (list_regex_cmd_ap.get()) in LoadCommandDictionary()
595 if (list_regex_cmd_ap->AddRegexCommand("^([0-9]+)[[:space:]]*$", "source list --line %1") && in LoadCommandDictionary()
596list_regex_cmd_ap->AddRegexCommand("^(.*[^[:space:]])[[:space:]]*:[[:space:]]*([[:digit:]]+)[[:spa… in LoadCommandDictionary()
597list_regex_cmd_ap->AddRegexCommand("^\\*?(0x[[:xdigit:]]+)[[:space:]]*$", "source list --address %… in LoadCommandDictionary()
598 list_regex_cmd_ap->AddRegexCommand("^-[[:space:]]*$", "source list --reverse") && in LoadCommandDictionary()
599list_regex_cmd_ap->AddRegexCommand("^-([[:digit:]]+)[[:space:]]*$", "source list --reverse --count… in LoadCommandDictionary()
600 list_regex_cmd_ap->AddRegexCommand("^(.+)$", "source list --name \"%1\"") && in LoadCommandDictionary()
601 list_regex_cmd_ap->AddRegexCommand("^$", "source list")) in LoadCommandDictionary()
603 CommandObjectSP list_regex_cmd_sp(list_regex_cmd_ap.release()); in LoadCommandDictionary()