Searched refs:DebugCommand (Results 1 – 7 of 7) 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 …]
103 class DebugCommand; variable183 DebugCommand* last_command_;
10 class DebugCommand(cr.Command): class18 super(DebugCommand, self).__init__()22 parser = super(DebugCommand, self).AddArguments(subparsers)
151 V(DEBUGCOMMAND, DebugCommand, 1) \
100 DebugCommand: "debugCommand" property
259 else if (details.reason === WebInspector.DebuggerModel.BreakReason.DebugCommand)
1434 m_breakReason = InspectorFrontend::Debugger::Reason::DebugCommand; in didPause()