Lines Matching refs:SkipCommand
39 C(SkipCommand) \
340 class SkipCommand : public DebugCommand { class
342 SkipCommand(Token* name, IntegerToken* count) in SkipCommand() function in vixl::aarch64::SkipCommand
344 virtual ~SkipCommand() { delete count_; } in ~SkipCommand()
465 const char* SkipCommand::kAliases[] = {"skip", NULL};
466 const char* SkipCommand::kArguments = "[n = 1]";
467 const char* SkipCommand::kHelp = " Skip the next n instruction(s).";
1301 bool SkipCommand::Run(Debugger* debugger) { in Run()
1318 void SkipCommand::Print(FILE* out) { in Print()
1323 DebugCommand* SkipCommand::Build(std::vector<Token*> args) { in Build()
1342 return new SkipCommand(args[0], count); in Build()