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

  /external/chromium_org/content/renderer/
v8_value_converter_impl.cc 306 if (!val->CreationContext().IsEmpty() &&
307 val->CreationContext() != v8::Context::GetCurrent())
308 scope.reset(new v8::Context::Scope(val->CreationContext()));
375 if (!val->CreationContext().IsEmpty() &&
376 val->CreationContext() != v8::Context::GetCurrent())
377 scope.reset(new v8::Context::Scope(val->CreationContext()));
  /external/chromium_org/chrome/renderer/extensions/
scoped_persistent.h 72 return GetIsolate(object_handle->CreationContext());
send_request_natives.cc 73 v8::Handle<v8::Object>::Cast(args[0])->CreationContext()->Global());
app_bindings.cc 107 v8::Local<v8::Object>::Cast(args[0])->CreationContext();
messaging_bindings.cc 192 v8::Handle<v8::Context> context = callback_->CreationContext();
module_system.cc 365 v8::Handle<v8::Context> context = parameters->CreationContext();
dispatcher.cc 197 v8::Handle<v8::Object>::Cast(args[0])->CreationContext();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
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...]
V8DOMWrapper.cpp 47 explicit V8WrapperInstantiationScope(v8::Handle<v8::Object> creationContext)
52 // If a creationContext is empty, we will end up creating a new object
54 if (creationContext.IsEmpty())
56 v8::Handle<v8::Context> contextForWrapper = creationContext->CreationContext();
109 v8::Local<v8::Object> V8DOMWrapper::createWrapper(v8::Handle<v8::Object> creationContext, WrapperTypeInfo* type, void* impl, v8::Isolate* isolate)
111 V8WrapperInstantiationScope scope(creationContext);
ScriptProfiler.cpp 129 ScriptState* scriptState = ScriptState::forContext(object->CreationContext());
NPV8Object.cpp 130 if (V8PerContextData* perContextData = V8PerContextData::from(object->CreationContext())) {
182 ASSERT(!v8Object->CreationContext().IsEmpty());
183 if (V8PerContextData* perContextData = V8PerContextData::from(v8Object->CreationContext())) {
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestTypedefs.cpp 261 V8PerContextData* perContextData = V8PerContextData::from(info.Holder()->CreationContext());
596 v8::Handle<v8::Object> V8TestTypedefs::createWrapper(PassRefPtr<TestTypedefs> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
608 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, &info, toInternalPointer(impl.get()), isolate);
V8TestObject.cpp     [all...]
  /external/chromium_org/v8/test/cctest/
test-api.cc     [all...]
  /external/v8/test/cctest/
test-api.cc     [all...]
  /external/chromium_org/v8/src/
d8.cc 307 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/
deprecated_code_generator_v8.pm 776 friend v8::Handle<v8::Object> createV8HTMLWrapper(HTMLElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
777 friend v8::Handle<v8::Object> createV8HTMLDirectWrapper(HTMLElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
781 friend v8::Handle<v8::Object> createV8SVGWrapper(SVGElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
782 friend v8::Handle<v8::Object> createV8SVGDirectWrapper(SVGElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
783 friend v8::Handle<v8::Object> createV8SVGFallbackWrapper(SVGElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
787 friend v8::Handle<v8::Object> createV8HTMLFallbackWrapper(HTMLUnknownElement*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
792 friend v8::Handle<v8::Object> wrap(Node*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
801 friend v8::Handle<v8::Object> wrap(${nativeType}*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
802 static v8::Handle<v8::Object> createWrapper(${createWrapperArgumentType}, v8::Handle<v8::Object> creationContext, v8::Isolate*);
823 v8::Handle<v8::Value> toV8(${nativeType}*, v8::Handle<v8::Object> creationContext, v8::Isolate*)
    [all...]
  /external/chromium_org/v8/include/
v8.h     [all...]
  /external/v8/src/
api.cc     [all...]

Completed in 425 milliseconds