OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pauseOnExceptionsState
(Results
1 - 3
of
3
) sorted by null
/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;
/external/webkit/Source/WebCore/bindings/v8/
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
) };
Completed in 49 milliseconds