OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pauseonexceptionsstate
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.h
60
enum
PauseOnExceptionsState
{
65
PauseOnExceptionsState
pauseOnExceptionsState
();
66
void setPauseOnExceptionsState(
PauseOnExceptionsState
pauseOnExceptionsState
);
110
PauseOnExceptionsState
m_pauseOnExceptionsState;
DebuggerScript.js
35
DebuggerScript.
PauseOnExceptionsState
= {
41
DebuggerScript._pauseOnExceptionsState = DebuggerScript.
PauseOnExceptionsState
.DontPauseOnExceptions;
116
DebuggerScript.
pauseOnExceptionsState
= function()
125
if (DebuggerScript.
PauseOnExceptionsState
.PauseOnAllExceptions === newState)
130
if (DebuggerScript.
PauseOnExceptionsState
.PauseOnUncaughtExceptions === newState)
ScriptDebugServer.cpp
123
ScriptDebugServer::
PauseOnExceptionsState
ScriptDebugServer::
pauseOnExceptionsState
()
129
v8::Handle<v8::Function> function = v8::Local<v8::Function>::Cast(m_debuggerScript.get()->Get(v8::String::New("
pauseOnExceptionsState
")));
132
return static_cast<ScriptDebugServer::
PauseOnExceptionsState
>(result->Int32Value());
135
void ScriptDebugServer::setPauseOnExceptionsState(
PauseOnExceptionsState
pauseOnExceptionsState
)
142
v8::Handle<v8::Value> argv[] = { v8::Int32::New(
pauseOnExceptionsState
) };
/external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.h
66
enum
PauseOnExceptionsState
{
71
PauseOnExceptionsState
pauseOnExceptionsState
() const { return m_pauseOnExceptionsState; }
72
void setPauseOnExceptionsState(
PauseOnExceptionsState
);
129
PauseOnExceptionsState
m_pauseOnExceptionsState;
ScriptDebugServer.cpp
141
void ScriptDebugServer::setPauseOnExceptionsState(
PauseOnExceptionsState
pause)
/external/webkit/Source/WebCore/inspector/front-end/
ScriptsPanel.js
197
WebInspector.ScriptsPanel.
PauseOnExceptionsState
= {
711
_setPauseOnExceptions: function(
pauseOnExceptionsState
)
713
pauseOnExceptionsState
=
pauseOnExceptionsState
|| WebInspector.ScriptsPanel.
PauseOnExceptionsState
.DontPauseOnExceptions;
718
if (
pauseOnExceptionsState
== WebInspector.ScriptsPanel.
PauseOnExceptionsState
.DontPauseOnExceptions)
720
else if (
pauseOnExceptionsState
== WebInspector.ScriptsPanel.
PauseOnExceptionsState
.PauseOnAllExceptions)
722
else if (
pauseOnExceptionsState
== WebInspector.ScriptsPanel.PauseOnExceptionsState.PauseOnUncaughtExceptions
[
all
...]
Settings.js
66
this.installApplicationSetting("pauseOnExceptionStateString", WebInspector.ScriptsPanel.
PauseOnExceptionsState
.DontPauseOnExceptions);
/external/webkit/Source/WebCore/inspector/
InspectorDebuggerAgent.cpp
338
ScriptDebugServer::
PauseOnExceptionsState
pauseState;
349
scriptDebugServer().setPauseOnExceptionsState(static_cast<ScriptDebugServer::
PauseOnExceptionsState
>(pauseState));
350
if (scriptDebugServer().
pauseOnExceptionsState
() != pauseState)
/external/webkit/Source/WebCore/
ChangeLog-2010-01-29
[
all
...]
Completed in 395 milliseconds