Searched refs:toV8 (Results 1 - 25 of 109) sorted by relevance

12345

/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8EventTargetCustom.cpp41 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate);
43 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
H A DV8HTMLFormControlsCollectionCustom.cpp52 return toV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate());
54 return toV8(collection->ownerNode()->radioNodeList(name).get(), info.Holder(), info.GetIsolate());
H A DV8MessageChannelCustom.cpp55 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port1", toV8(obj->port1(), info.Holder(), info.GetIsolate()));
56 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "port2", toV8(obj->port2(), info.Holder(), info.GetIsolate()));
H A DV8DataViewCustom.h71 inline v8::Handle<v8::Value> toV8(DataView* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<DataView>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< DataView > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Float32ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Float32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Float32Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Float64ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Float64Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float64Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8ImageDataCustom.cpp44 v8::Handle<v8::Value> pixelArray = toV8(impl->data(), creationContext, isolate);
H A DV8Int16ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Int16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Int16Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int16Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Int32ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Int32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Int32Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Int8ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Int8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Int8Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8MIDIInputCustom.cpp47 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "access", toV8(input->midiAccess(), creationContext, isolate));
H A DV8MIDIOutputCustom.cpp47 V8HiddenPropertyName::setNamedHiddenReference(wrapper, "access", toV8(output->midiAccess(), creationContext, isolate));
H A DV8Uint16ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Uint16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Uint16Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint16Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint32ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Uint32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Uint32Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint8ArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Uint8Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Uint8Array>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint8Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8Uint8ClampedArrayCustom.h71 inline v8::Handle<v8::Value> toV8(Uint8ClampedArray* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
73 return V8TypedArray<Uint8ClampedArray>::toV8(impl, creationContext, isolate);
94 inline v8::Handle<v8::Value> toV8(PassRefPtr< Uint8ClampedArray > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
96 return toV8(impl.get(), creationContext, isolate);
H A DV8CustomSQLStatementErrorCallback.cpp56 v8::Handle<v8::Value> transactionHandle = toV8(transaction, v8::Handle<v8::Object>(), v8Context->GetIsolate());
57 v8::Handle<v8::Value> errorHandle = toV8(error, v8::Handle<v8::Object>(), isolate);
H A DV8TextTrackCueCustom.cpp41 v8::Handle<v8::Value> toV8(TextTrackCue* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
43 return toV8(toVTTCue(impl), creationContext, isolate);
H A DV8WebGLRenderingContextCustom.cpp148 return toV8(args.getWebGLBuffer(), creationContext, isolate);
150 return toV8(args.getWebGLFloatArray(), creationContext, isolate);
152 return toV8(args.getWebGLFramebuffer(), creationContext, isolate);
154 return toV8(args.getWebGLIntArray(), creationContext, isolate);
158 return toV8(args.getWebGLProgram(), creationContext, isolate);
160 return toV8(args.getWebGLRenderbuffer(), creationContext, isolate);
162 return toV8(args.getWebGLTexture(), creationContext, isolate);
164 return toV8(args.getWebGLUnsignedByteArray(), creationContext, isolate);
166 return toV8(args.getWebGLUnsignedIntArray(), creationContext, isolate);
168 return toV8(arg
[all...]
H A DV8HTMLAllCollectionCustom.cpp53 return toV8(namedItems.at(0).release(), info.Holder(), info.GetIsolate());
57 return toV8(NamedNodesCollection::create(namedItems), info.Holder(), info.GetIsolate());
75 return toV8(result.release(), info.Holder(), info.GetIsolate());
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestInterfacePython.h82 v8::Handle<v8::Value> toV8(TestInterfacePythonImplementation*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
87 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
93 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
99 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
102 inline v8::Handle<v8::Value> toV8(PassRefPtr<TestInterfacePythonImplementation > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
104 return toV8(impl.get(), creationContext, isolate);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryListListener.cpp38 callback.appendArgument(ScriptValue(toV8(query, v8::Handle<v8::Object>(), context->GetIsolate()), context->GetIsolate()));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DIDBBindingUtilities.cpp56 static v8::Handle<v8::Value> toV8(const IDBKeyPath& value, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
67 return toV8(keyPaths.release(), creationContext, isolate);
73 v8::Handle<v8::Value> toV8(const IDBKey* key, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
91 return toV8(Uint8Array::create(reinterpret_cast<const unsigned char*>(key->binary()->data()), key->binary()->size()), creationContext, isolate);
98 array->Set(i, toV8(key->array()[i].get(), creationContext, isolate));
107 v8::Handle<v8::Value> toV8(const IDBAny* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function in namespace:WebCore
118 return toV8(impl->domStringList(), creationContext, isolate);
120 return toV8(impl->idbCursor(), creationContext, isolate);
122 return toV8(impl->idbCursorWithValue(), creationContext, isolate);
124 return toV8(imp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/testing/v8/
H A DWebCoreTestSupport.cpp48 context->Global()->Set(v8::String::NewFromUtf8(context->GetIsolate(), Internals::internalsId), toV8(Internals::create(toDocument(scriptContext)), v8::Handle<v8::Object>(), context->GetIsolate()));
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface.h148 v8::Handle<v8::Value> toV8({{cpp_class}}*, v8::Handle<v8::Object> creationContext, v8::Isolate*);
153 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
159 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
165 v8SetReturnValue(callbackInfo, toV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
179 inline v8::Handle<v8::Value> toV8({{cpp_class}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
230 inline v8::Handle<v8::Value> toV8(PassRefPtr<{{cpp_class}} > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate) function
232 return toV8(impl.get(), creationContext, isolate);

Completed in 240 milliseconds

12345