Searched refs:InvalidCommand (Results 1 – 1 of 1) sorted by relevance
/external/vixl/src/vixl/a64/ |
D | debugger-a64.cc | 394 class InvalidCommand : public DebugCommand { class 396 InvalidCommand(std::vector<Token*> args, int index, const char* cause) in InvalidCommand() function in vixl::InvalidCommand 398 virtual ~InvalidCommand(); 1121 return new InvalidCommand(args, 0, "command name is not valid"); in Parse() 1172 return new InvalidCommand(args, -1, "too many arguments"); in Build() 1189 return new InvalidCommand(args, -1, "too many arguments"); in Build() 1225 return new InvalidCommand(args, 1, "expects int"); in Build() 1231 return new InvalidCommand(args, -1, "too many arguments"); in Build() 1248 return new InvalidCommand(args, 1, "expects int"); in Build() 1255 return new InvalidCommand(args, -1, "too many arguments"); in Build() [all …]
|