HomeSort by relevance Sort by last modified time
    Searched refs:pauseOnExceptionsState (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.h 64 enum PauseOnExceptionsState {
69 PauseOnExceptionsState pauseOnExceptionsState();
70 void setPauseOnExceptionsState(PauseOnExceptionsState pauseOnExceptionsState);
126 PauseOnExceptionsState m_pauseOnExceptionsState;
ScriptDebugServer.cpp 147 ScriptDebugServer::PauseOnExceptionsState ScriptDebugServer::pauseOnExceptionsState()
154 v8::Handle<v8::Value> result = callDebuggerMethod("pauseOnExceptionsState", 0, argv);
155 return static_cast<ScriptDebugServer::PauseOnExceptionsState>(result->Int32Value());
158 void ScriptDebugServer::setPauseOnExceptionsState(PauseOnExceptionsState pauseOnExceptionsState)
164 v8::Handle<v8::Value> argv[] = { v8::Int32::New(pauseOnExceptionsState, m_isolate) };
DebuggerScript.js 35 DebuggerScript.PauseOnExceptionsState = {
41 DebuggerScript._pauseOnExceptionsState = DebuggerScript.PauseOnExceptionsState.DontPauseOnExceptions;
182 DebuggerScript.pauseOnExceptionsState = function()
191 if (DebuggerScript.PauseOnExceptionsState.PauseOnAllExceptions === newState)
196 if (DebuggerScript.PauseOnExceptionsState.PauseOnUncaughtExceptions === newState)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 63 static const char pauseOnExceptionsState[] = "pauseOnExceptionsState";
113 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
136 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
192 long pauseState = m_state->getLong(DebuggerAgentState::pauseOnExceptionsState);
258 if (source == ConsoleAPIMessageSource && type == AssertMessageType && scriptDebugServer().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOnExceptions)
783 ScriptDebugServer::PauseOnExceptionsState pauseState;
799 scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(pauseState));
800 if (scriptDebugServer().pauseOnExceptionsState() != pauseState)
803 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, pauseState)
    [all...]
InspectorRuntimeAgent.cpp 60 static ScriptDebugServer::PauseOnExceptionsState setPauseOnExceptionsState(ScriptDebugServer* scriptDebugServer, ScriptDebugServer::PauseOnExceptionsState newState)
63 ScriptDebugServer::PauseOnExceptionsState presentState = scriptDebugServer->pauseOnExceptionsState();
74 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::DontPauseOnExceptions;
99 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = ScriptDebugServer::DontPauseOnExceptions;
121 ScriptDebugServer::PauseOnExceptionsState previousPauseOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOnExceptions);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SourcesPanel.js 725 var pauseOnExceptionsState = WebInspector.settings.pauseOnExceptionStateString.get();
726 switch (pauseOnExceptionsState) {
727 case WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions:
730 case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions:
733 case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions:
737 this._pauseOnExceptionButton.state = pauseOnExceptionsState;
    [all...]

Completed in 77 milliseconds