Home
last modified time | relevance | path

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

/external/vixl/src/aarch64/
Ddebugger-aarch64.cc37 C(ContinueCommand) \
306 class ContinueCommand : public DebugCommand { class
308 explicit ContinueCommand(Token* name) : DebugCommand(name) {} in ContinueCommand() function in vixl::aarch64::ContinueCommand
457 const char* ContinueCommand::kAliases[] = {"continue", "c", NULL};
458 const char* ContinueCommand::kArguments = NULL;
459 const char* ContinueCommand::kHelp = " Resume execution.";
1233 bool ContinueCommand::Run(Debugger* debugger) { in Run()
1241 DebugCommand* ContinueCommand::Build(std::vector<Token*> args) { in Build()
1246 return new ContinueCommand(args[0]); in Build()