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

  /external/webkit/WebCore/bindings/v8/
ScheduledAction.cpp 110 v8::Handle<v8::Context> v8Context = v8::Local<v8::Context>::New(m_context.get());
111 if (v8Context.IsEmpty())
114 v8::Context::Scope scope(v8Context);
120 proxy->callFunction(v8::Persistent<v8::Function>::Cast(m_function), v8Context->Global(), m_argc, m_argv);
138 v8::Handle<v8::Context> v8Context = v8::Local<v8::Context>::New(m_context.get());
139 ASSERT(!v8Context.IsEmpty());
140 v8::Context::Scope scope(v8Context);
141 m_function->Call(v8Context->Global(), m_argc, m_argv);
ScriptController.cpp 163 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(activeFrame);
167 if (v8Context.IsEmpty())
170 v8::Context::Scope scope(v8Context);
172 v8::Handle<v8::Object> global = v8Context->Global();
229 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(m_proxy->frame());
230 if (v8Context.IsEmpty())
233 v8::Context::Scope scope(v8Context);
264 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(frame);
265 if (v8Context.IsEmpty())
268 v8::Context::Scope scope(v8Context);
    [all...]
V8AbstractEventListener.cpp 80 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
81 if (v8Context.IsEmpty())
85 v8::Context::Scope scope(v8Context);
120 v8::Local<v8::Context> v8Context = toV8Context(context, worldContext());
121 if (v8Context.IsEmpty())
138 v8::Local<v8::Value> savedEvent = v8Context->Global()->GetHiddenValue(eventSymbol);
142 v8Context->Global()->SetHiddenValue(eventSymbol, jsEvent);
158 v8Context->Global()->SetHiddenValue(eventSymbol, v8::Undefined());
160 v8Context->Global()->SetHiddenValue(eventSymbol, savedEvent);
V8WorkerContextEventListener.cpp 72 v8::Handle<v8::Context> v8Context = proxy->context();
73 if (v8Context.IsEmpty())
77 v8::Context::Scope scope(v8Context);
99 v8::Handle<v8::Context> v8Context = proxy->context();
100 if (v8Context.IsEmpty())
104 v8::Context::Scope scope(v8Context);
V8LazyEventListener.cpp 91 v8::Local<v8::Context> v8Context = worldContext().adjustedContext(proxy);
93 if (v8Context.IsEmpty())
96 v8::Context::Scope scope(v8Context);
V8DOMWindowShell.cpp 286 v8::Local<v8::Context> v8Context = v8::Local<v8::Context>::New(m_context);
287 v8::Context::Scope contextScope(v8Context);
291 m_global = v8::Persistent<v8::Object>::New(v8Context->Global());
302 installHiddenObjectPrototype(v8Context);
313 if (!installDOMWindow(v8Context, m_frame->domWindow()))
V8Proxy.cpp 760 v8::Handle<v8::Context> v8Context = V8Proxy::mainWorldContext(frame);
761 if (v8Context.IsEmpty())
764 v8::Context::Scope scope(v8Context);
768 v8::Handle<v8::Object> global = v8Context->Global();
  /external/webkit/WebCore/bindings/v8/custom/
V8WorkerContextCustom.cpp 61 v8::Handle<v8::Context> v8Context = workerContext->script()->proxy()->context();
64 timerId = DOMTimer::install(workerContext, new ScheduledAction(v8Context, stringFunction, workerContext->url()), timeout, singleShot);
74 ScheduledAction* action = new ScheduledAction(v8Context, v8::Handle<v8::Function>::Cast(function), paramCount, params);

Completed in 162 milliseconds