Searched defs:toV8 (Results 1 - 25 of 44) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8EventTargetCustom.cpp39 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
45 return toV8(static_cast<LocalDOMWindow*>(impl), creationContext, isolate);
H A DV8ArrayBufferCustom.h85 inline v8::Handle<v8::Value> toV8(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
135 inline v8::Handle<v8::Value> toV8(PassRefPtr< ArrayBuffer > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
137 return toV8(impl.get(), creationContext, isolate);
H A DV8DataViewCustom.h67 inline v8::Handle<v8::Value> toV8(DataView* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<DataView>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< DataView > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Float32ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Float32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Float32Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Float64ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Float64Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float64Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Int16ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Int16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Int16Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int16Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Int32ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Int32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Int32Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Int8ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Int8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Int8Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint16ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Uint16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Uint16Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint16Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint32ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Uint32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Uint32Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint8ArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Uint8Array>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint8ClampedArrayCustom.h67 inline v8::Handle<v8::Value> toV8(Uint8ClampedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
69 return V8TypedArray<Uint8ClampedArray>::toV8(impl, creationContext, isolate);
90 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint8ClampedArray > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
92 return toV8(impl.get(), creationContext, isolate);
H A DV8WorkerGlobalScopeCustom.cpp107 v8::Handle<v8::Value> toV8(WorkerGlobalScope* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestInterface.h63 v8::Handle<v8::Value> toV8(TestInterfaceImplementation*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
68 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
74 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
80 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
83 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceImplementation> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
85 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterfaceNotScriptWrappable.h53 inline v8::Handle<v8::Value> toV8(TestInterfaceNotScriptWrappable* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
104 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceNotScriptWrappable> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
106 return toV8(impl.get(), creationContext, isolate);
H A DV8TestObject.h95 inline v8::Handle<v8::Value> toV8(TestObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
146 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestObject> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
148 return toV8(impl.get(), creationContext, isolate);
H A DV8SVGTestInterface.h54 inline v8::Handle<v8::Value> toV8(SVGTestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
105 inline v8::Handle<v8::Value> toV8(PassRefPtr<SVGTestInterface> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
107 return toV8(impl.get(), creationContext, isolate);
H A DV8TestDictionary.cpp166 v8::Handle<v8::Value> toV8(TestDictionary* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
178 v8Object->Set(v8String(isolate, "elementOrNullMember"), toV8(impl->elementOrNullMember(), creationContext, isolate));
213 v8Object->Set(v8String(isolate, "testInterfaceGarbageCollectedMember"), toV8(impl->testInterfaceGarbageCollectedMember(), creationContext, isolate));
216 v8Object->Set(v8String(isolate, "testInterfaceGarbageCollectedOrNullMember"), toV8(impl->testInterfaceGarbageCollectedOrNullMember(), creationContext, isolate));
219 v8Object->Set(v8String(isolate, "testInterfaceMember"), toV8(impl->testInterfaceMember(), creationContext, isolate));
222 v8Object->Set(v8String(isolate, "testInterfaceOrNullMember"), toV8(impl->testInterfaceOrNullMember(), creationContext, isolate));
225 v8Object->Set(v8String(isolate, "testInterfaceWillBeGarbageCollectedMember"), toV8(impl->testInterfaceWillBeGarbageCollectedMember(), creationContext, isolate));
228 v8Object->Set(v8String(isolate, "testInterfaceWillBeGarbageCollectedOrNullMember"), toV8(impl->testInterfaceWillBeGarbageCollectedOrNullMember(), creationContext, isolate));
H A DV8TestException.h54 inline v8::Handle<v8::Value> toV8(TestException* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
105 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestException> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
107 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterface2.h56 inline v8::Handle<v8::Value> toV8(TestInterface2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
107 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterface2> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
109 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterface3.h63 inline v8::Handle<v8::Value> toV8(TestInterface3* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
114 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterface3> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
116 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterfaceCheckSecurity.h54 inline v8::Handle<v8::Value> toV8(TestInterfaceCheckSecurity* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
105 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceCheckSecurity> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
107 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterfaceConstructor.h61 inline v8::Handle<v8::Value> toV8(TestInterfaceConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
112 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceConstructor> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
114 return toV8(impl.get(), creationContext, isolate);
H A DV8TestInterfaceConstructor2.h55 inline v8::Handle<v8::Value> toV8(TestInterfaceConstructor2* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
106 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfaceConstructor2> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
108 return toV8(impl.get(), creationContext, isolate);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/modules/
H A DV8TestInterface5.h55 v8::Handle<v8::Value> toV8(TestInterface5Implementation*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
60 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
66 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
72 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
75 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterface5Implementation> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:blink
77 return toV8(impl.get(), creationContext, isolate);

Completed in 4593 milliseconds

12