OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:debuggerContext
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.h
49
static PassRefPtrWillBeRawPtr<JavaScriptCallFrame> create(v8::Handle<v8::Context>
debuggerContext
, v8::Handle<v8::Object> callFrame)
51
return adoptRefWillBeNoop(new JavaScriptCallFrame(
debuggerContext
, callFrame));
78
JavaScriptCallFrame(v8::Handle<v8::Context>
debuggerContext
, v8::Handle<v8::Object> callFrame);
JavaScriptCallFrame.cpp
40
JavaScriptCallFrame::JavaScriptCallFrame(v8::Handle<v8::Context>
debuggerContext
, v8::Handle<v8::Object> callFrame)
42
, m_debuggerContext(m_isolate,
debuggerContext
)
55
v8::Handle<v8::Context>
debuggerContext
= m_debuggerContext.newLocal(m_isolate);
56
v8::Context::Scope contextScope(
debuggerContext
);
60
m_caller = JavaScriptCallFrame::create(
debuggerContext
, v8::Handle<v8::Object>::Cast(callerFrame));
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
WorkerScriptDebugServer.cpp
62
v8::Local<v8::Context>
debuggerContext
= v8::Debug::GetDebugContext();
63
v8::Context::Scope contextScope(
debuggerContext
);
ScriptDebugServer.cpp
92
v8::Local<v8::Context>
debuggerContext
= v8::Debug::GetDebugContext();
93
v8::Context::Scope contextScope(
debuggerContext
);
96
info->Set(v8AtomicString(m_isolate, "sourceID"), v8String(
debuggerContext
->GetIsolate(), sourceID));
97
info->Set(v8AtomicString(m_isolate, "lineNumber"), v8::Integer::New(
debuggerContext
->GetIsolate(), scriptBreakpoint.lineNumber));
98
info->Set(v8AtomicString(m_isolate, "columnNumber"), v8::Integer::New(
debuggerContext
->GetIsolate(), scriptBreakpoint.columnNumber));
99
info->Set(v8AtomicString(m_isolate, "interstatementLocation"), v8Boolean(interstatementLocation,
debuggerContext
->GetIsolate()));
100
info->Set(v8AtomicString(m_isolate, "condition"), v8String(
debuggerContext
->GetIsolate(), scriptBreakpoint.condition));
114
v8::Local<v8::Context>
debuggerContext
= v8::Debug::GetDebugContext();
115
v8::Context::Scope contextScope(
debuggerContext
);
118
info->Set(v8AtomicString(m_isolate, "breakpointId"), v8String(
debuggerContext
->GetIsolate(), breakpointId))
[
all
...]
PageScriptDebugServer.cpp
122
v8::Local<v8::Context>
debuggerContext
= v8::Debug::GetDebugContext();
123
v8::Context::Scope contextScope(
debuggerContext
);
Completed in 241 milliseconds