Home
last modified time | relevance | path

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

/external/vixl/src/vixl/a64/
Ddebugger-a64.cc36 C(ContinueCommand) \
281 class ContinueCommand : public DebugCommand { class
283 explicit ContinueCommand(Token* name) : DebugCommand(name) {} in ContinueCommand() function in vixl::ContinueCommand
412 const char* ContinueCommand::kAliases[] = { "continue", "c", NULL };
413 const char* ContinueCommand::kArguments = NULL;
414 const char* ContinueCommand::kHelp = " Resume execution.";
1179 bool ContinueCommand::Run(Debugger* debugger) { in Run()
1187 DebugCommand* ContinueCommand::Build(std::vector<Token*> args) { in Build()
1192 return new ContinueCommand(args[0]); in Build()