HomeSort by relevance Sort by last modified time
    Searched full:pauseonexceptionsstate (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
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);
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...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptDebugServer.h 63 enum PauseOnExceptionsState {
68 PauseOnExceptionsState pauseOnExceptionsState();
69 void setPauseOnExceptionsState(PauseOnExceptionsState pauseOnExceptionsState);
129 PauseOnExceptionsState m_pauseOnExceptionsState;
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/devtools/front_end/
ScriptsPanel.js 591 var pauseOnExceptionsState = WebInspector.settings.pauseOnExceptionStateString.get();
592 switch (pauseOnExceptionsState) {
593 case WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions:
596 case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnAllExceptions:
599 case WebInspector.DebuggerModel.PauseOnExceptionsState.PauseOnUncaughtExceptions:
603 this._pauseOnExceptionButton.state = pauseOnExceptionsState;
658 var stateEnum = WebInspector.DebuggerModel.PauseOnExceptionsState;
    [all...]
DebuggerModel.js 50 WebInspector.settings.pauseOnExceptionStateString = WebInspector.settings.createSetting("pauseOnExceptionStateString", WebInspector.DebuggerModel.PauseOnExceptionsState.DontPauseOnExceptions);
59 WebInspector.DebuggerModel.PauseOnExceptionsState = {

Completed in 145 milliseconds