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

  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 319 if (!val->CreationContext().IsEmpty() &&
320 val->CreationContext() != isolate->GetCurrentContext())
321 scope.reset(new v8::Context::Scope(val->CreationContext()));
389 if (!val->CreationContext().IsEmpty() &&
390 val->CreationContext() != isolate->GetCurrentContext())
391 scope.reset(new v8::Context::Scope(val->CreationContext()));
  /external/chromium_org/chrome/renderer/extensions/
scoped_persistent.h 68 return GetIsolate(object_handle->CreationContext());
send_request_natives.cc 73 v8::Handle<v8::Object>::Cast(args[0])->CreationContext()->Global());
app_bindings.cc 110 v8::Local<v8::Object>::Cast(args[0])->CreationContext();
messaging_bindings.cc 204 v8::Handle<v8::Context> context = callback->CreationContext();
module_system.cc 378 v8::Handle<v8::Context> context = parameters->CreationContext();
dispatcher.cc 250 v8::Handle<v8::Object>::Cast(args[0])->CreationContext();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMWrapper.h 50 static v8::Local<v8::Object> createWrapper(v8::Handle<v8::Object> creationContext, const WrapperTypeInfo*, void*, v8::Isolate*);
90 V8WrapperInstantiationScope(v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
95 // If a creationContext is empty, we will end up creating a new object
97 if (creationContext.IsEmpty())
99 v8::Handle<v8::Context> contextForWrapper = creationContext->CreationContext();
CustomElementWrapper.cpp 49 v8::Handle<v8::Object> createDirectWrapper(ElementType*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
52 v8::Handle<v8::Object> createDirectWrapper<HTMLElement>(HTMLElement* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
54 return createV8HTMLDirectWrapper(element, creationContext, isolate);
58 v8::Handle<v8::Object> createDirectWrapper<SVGElement>(SVGElement* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
60 return createV8SVGDirectWrapper(element, creationContext, isolate);
64 v8::Handle<v8::Object> createFallbackWrapper(ElementType*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
67 v8::Handle<v8::Object> createFallbackWrapper<HTMLElement>(HTMLElement* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
69 return createV8HTMLFallbackWrapper(toHTMLUnknownElement(element), creationContext, isolate);
73 v8::Handle<v8::Object> createFallbackWrapper<SVGElement>(SVGElement* element, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
75 return createV8SVGFallbackWrapper(element, creationContext, isolate)
    [all...]
ScriptProfiler.cpp 137 ScriptState* scriptState = ScriptState::forContext(object->CreationContext());
NPV8Object.cpp 130 if (V8PerContextData* perContextData = V8PerContextData::from(object->CreationContext())) {
181 ASSERT(!v8Object->CreationContext().IsEmpty());
182 if (V8PerContextData* perContextData = V8PerContextData::from(v8Object->CreationContext())) {
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.cpp 52 V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->CreationContext());
636 ExecutionContext* context = toExecutionContext(prototypeTemplate->CreationContext());
674 v8::Handle<v8::Object> wrap({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
679 return wrap(to{{special_wrap_interface}}(impl), creationContext, isolate);
681 v8::Handle<v8::Object> wrapper = {{v8_class}}::createWrapper(impl, creationContext, isolate);
692 v8::Handle<v8::Object> {{v8_class}}::createWrapper(PassRefPtr<{{cpp_class}}> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
703 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestTypedefs.cpp 256 V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->CreationContext());
537 v8::Handle<v8::Object> V8TestTypedefs::createWrapper(PassRefPtr<TestTypedefs> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
548 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &wrapperTypeInfo, toInternalPointer(impl.get()), isolate);
563 v8::Handle<v8::Value> toV8NoInline(TestTypedefs* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
565 return toV8(impl, creationContext, isolate);
V8TestObject.cpp     [all...]
V8TestObjectPython.cpp     [all...]
  /external/chromium_org/v8/test/cctest/
test-object-observe.cc 519 Handle<Object> global = instance->CreationContext()->Global();
test-api.cc     [all...]
  /external/v8/test/cctest/
test-api.cc     [all...]
  /external/chromium_org/v8/src/
d8.cc 319 int index = data->RealmFind(args[0]->ToObject()->CreationContext());
    [all...]
api.cc     [all...]
  /external/v8/include/
v8.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
code_generator_v8.pm 504 v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper);
505 V8WrapperInstantiationScope scope(creationContext, isolate);
513 wrap(impl->contextElement(), creationContext, isolate);
534 wrap(${setReferenceName}, creationContext, isolate);
865 friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
866 friend v8::Handle<v8::Object> createV8HTMLDirectWrapper(HTMLElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
870 friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*)
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 106 milliseconds