Searched refs:DebugCommand (Results 1 – 3 of 3) sorted by relevance
243 class DebugCommand { class245 explicit DebugCommand(Token* name) : name_(IdentifierToken::Cast(name)) {} in DebugCommand() function in vixl::DebugCommand246 DebugCommand() : name_(NULL) {} in DebugCommand() function in vixl::DebugCommand247 virtual ~DebugCommand() { delete name_; } in ~DebugCommand()256 static DebugCommand* Parse(char* line);267 class HelpCommand : public DebugCommand {269 explicit HelpCommand(Token* name) : DebugCommand(name) {} in HelpCommand()273 static DebugCommand* Build(std::vector<Token*> args);281 class ContinueCommand : public DebugCommand {283 explicit ContinueCommand(Token* name) : DebugCommand(name) {} in ContinueCommand()[all …]
50 class DebugCommand; variable104 DebugCommand* last_command_;
151 V(DEBUGCOMMAND, DebugCommand, 1) \