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

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
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)
ScriptDebugServer.cpp 203 ScriptDebugServer::PauseOnExceptionsState ScriptDebugServer::pauseOnExceptionsState()
210 v8::Handle<v8::Value> result = callDebuggerMethod("pauseOnExceptionsState", 0, argv);
211 return static_cast<ScriptDebugServer::PauseOnExceptionsState>(result->Int32Value());
214 void ScriptDebugServer::setPauseOnExceptionsState(PauseOnExceptionsState pauseOnExceptionsState)
220 v8::Handle<v8::Value> argv[] = { v8::Int32::New(pauseOnExceptionsState) };
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp 60 static const char pauseOnExceptionsState[] = "pauseOnExceptionsState";
105 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
128 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, ScriptDebugServer::DontPauseOnExceptions);
181 long pauseState = m_state->getLong(DebuggerAgentState::pauseOnExceptionsState);
225 if (source == ConsoleAPIMessageSource && type == AssertMessageType && scriptDebugServer().pauseOnExceptionsState() != ScriptDebugServer::DontPauseOnExceptions)
661 ScriptDebugServer::PauseOnExceptionsState pauseState;
677 scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::PauseOnExceptionsState>(pauseState));
678 if (scriptDebugServer().pauseOnExceptionsState() != pauseState)
681 m_state->setLong(DebuggerAgentState::pauseOnExceptionsState, pauseState)
    [all...]

Completed in 176 milliseconds