OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pauseOnExceptionsState
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptDebugServer.h
64
enum
PauseOnExceptionsState
{
69
PauseOnExceptionsState
pauseOnExceptionsState
();
70
void setPauseOnExceptionsState(
PauseOnExceptionsState
pauseOnExceptionsState
);
137
PauseOnExceptionsState
m_pauseOnExceptionsState;
ScriptDebugServer.cpp
150
ScriptDebugServer::
PauseOnExceptionsState
ScriptDebugServer::
pauseOnExceptionsState
()
157
v8::Handle<v8::Value> result = callDebuggerMethod("
pauseOnExceptionsState
", 0, argv);
158
return static_cast<ScriptDebugServer::
PauseOnExceptionsState
>(result->Int32Value());
161
void ScriptDebugServer::setPauseOnExceptionsState(
PauseOnExceptionsState
pauseOnExceptionsState
)
167
v8::Handle<v8::Value> argv[] = { v8::Int32::New(m_isolate,
pauseOnExceptionsState
) };
DebuggerScript.js
35
DebuggerScript.
PauseOnExceptionsState
= {
47
DebuggerScript._pauseOnExceptionsState = DebuggerScript.
PauseOnExceptionsState
.DontPauseOnExceptions;
204
DebuggerScript.
pauseOnExceptionsState
= function()
213
if (DebuggerScript.
PauseOnExceptionsState
.PauseOnAllExceptions === newState)
218
if (DebuggerScript.
PauseOnExceptionsState
.PauseOnUncaughtExceptions === newState)
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDebuggerAgent.cpp
79
static const char
pauseOnExceptionsState
[] = "
pauseOnExceptionsState
";
148
m_state->setLong(DebuggerAgentState::
pauseOnExceptionsState
, ScriptDebugServer::DontPauseOnExceptions);
166
m_state->setLong(DebuggerAgentState::
pauseOnExceptionsState
, ScriptDebugServer::DontPauseOnExceptions);
225
long pauseState = m_state->getLong(DebuggerAgentState::
pauseOnExceptionsState
);
292
if (consoleMessage->type() == AssertMessageType && scriptDebugServer().
pauseOnExceptionsState
() != ScriptDebugServer::DontPauseOnExceptions)
[
all
...]
InspectorRuntimeAgent.cpp
69
static ScriptDebugServer::
PauseOnExceptionsState
setPauseOnExceptionsState(ScriptDebugServer* scriptDebugServer, ScriptDebugServer::
PauseOnExceptionsState
newState)
72
ScriptDebugServer::
PauseOnExceptionsState
presentState = scriptDebugServer->
pauseOnExceptionsState
();
83
ScriptDebugServer::
PauseOnExceptionsState
previousPauseOnExceptionsState = ScriptDebugServer::DontPauseOnExceptions;
108
ScriptDebugServer::
PauseOnExceptionsState
previousPauseOnExceptionsState = ScriptDebugServer::DontPauseOnExceptions;
130
ScriptDebugServer::
PauseOnExceptionsState
previousPauseOnExceptionsState = setPauseOnExceptionsState(m_scriptDebugServer, ScriptDebugServer::DontPauseOnExceptions);
Completed in 92 milliseconds