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

  /external/webkit/WebCore/inspector/
InspectorBackend.idl 66 long pauseOnExceptionsState();
67 void setPauseOnExceptionsState(in long pauseOnExceptionsState);
InspectorBackend.h 88 long pauseOnExceptionsState();
JavaScriptDebugServer.h 71 enum PauseOnExceptionsState {
76 PauseOnExceptionsState pauseOnExceptionsState() const { return m_pauseOnExceptionsState; }
77 void setPauseOnExceptionsState(PauseOnExceptionsState);
144 PauseOnExceptionsState m_pauseOnExceptionsState;
InspectorBackend.cpp 215 long InspectorBackend::pauseOnExceptionsState()
217 return JavaScriptDebugServer::shared().pauseOnExceptionsState();
222 JavaScriptDebugServer::shared().setPauseOnExceptionsState(static_cast<JavaScriptDebugServer::PauseOnExceptionsState>(pauseState));
  /external/webkit/WebCore/inspector/front-end/
InspectorBackendStub.js 177 pauseOnExceptionsState: function()
ScriptsPanel.js 198 WebInspector.ScriptsPanel.PauseOnExceptionsState = {
808 if (InspectorBackend.pauseOnExceptionsState() == WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions)
810 else if (InspectorBackend.pauseOnExceptionsState() == WebInspector.ScriptsPanel.PauseOnExceptionsState.PauseOnAllExceptions)
812 else if (InspectorBackend.pauseOnExceptionsState() == WebInspector.ScriptsPanel.PauseOnExceptionsState.PauseOnUncaughtExceptions)
815 this.pauseOnExceptionButton.state = InspectorBackend.pauseOnExceptionsState();
    [all...]
  /external/webkit/WebKit/chromium/src/js/
InspectorControllerImpl.js 157 var enabled = (state !== WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions);
164 devtools.InspectorBackendImpl.prototype.pauseOnExceptionsState = function()
166 return (this._setPauseOnExceptionsState || WebInspector.ScriptsPanel.PauseOnExceptionsState.DontPauseOnExceptions);

Completed in 75 milliseconds