HomeSort by relevance Sort by last modified time
    Searched defs:toV8 (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8EventTargetCustom.cpp 42 return toV8(static_cast<interfaceName*>(impl), creationContext, isolate);
44 v8::Handle<v8::Value> toV8(EventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
58 return toV8(impl, creationContext, isolate);
V8IDBAnyCustom.cpp 45 static v8::Handle<v8::Value> toV8(const IDBKeyPath& value, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
56 return toV8(keyPaths.release(), creationContext, isolate);
62 v8::Handle<v8::Value> toV8(IDBAny* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return toV8(impl->domStringList(), creationContext, isolate);
75 return toV8(impl->idbCursor(), creationContext, isolate);
77 return toV8(impl->idbCursorWithValue(), creationContext, isolate);
79 return toV8(impl->idbDatabase(), creationContext, isolate);
81 return toV8(impl->idbFactory(), creationContext, isolate);
83 return toV8(impl->idbIndex(), creationContext, isolate);
85 return toV8(impl->idbObjectStore(), creationContext, isolate)
    [all...]
V8ArrayBufferCustom.h 88 inline v8::Handle<v8::Value> toV8(ArrayBuffer* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
126 inline v8::Handle<v8::Value> toV8(PassRefPtr< ArrayBuffer > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
128 return toV8(impl.get(), creationContext, isolate);
V8DataViewCustom.h 71 inline v8::Handle<v8::Value> toV8(DataView* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return V8TypedArray<DataView>::toV8(impl, creationContext, isolate);
106 inline v8::Handle<v8::Value> toV8(PassRefPtr< DataView > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
108 return toV8(impl.get(), creationContext, isolate);
V8Float32ArrayCustom.h 71 inline v8::Handle<v8::Value> toV8(Float32Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return V8TypedArray<Float32Array>::toV8(impl, creationContext, isolate);
106 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float32Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
108 return toV8(impl.get(), creationContext, isolate);
V8Float64ArrayCustom.h 71 inline v8::Handle<v8::Value> toV8(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return V8TypedArray<Float64Array>::toV8(impl, creationContext, isolate);
106 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float64Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
108 return toV8(impl.get(), creationContext, isolate);
V8Int16ArrayCustom.h 71 inline v8::Handle<v8::Value> toV8(Int16Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
73 return V8TypedArray<Int16Array>::toV8(impl, creationContext, isolate);
106 inline v8::Handle<v8::Value> toV8(PassRefPtr< Int16Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
108 return toV8(impl.get(), creationContext, isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 78 inline v8::Handle<v8::Value> toV8({{cpp_class_name}}* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
122 inline v8::Handle<v8::Value> toV8(PassRefPtr< {{cpp_class_name}} > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
124 return toV8(impl.get(), creationContext, isolate);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8Float64Array.h 72 inline v8::Handle<v8::Value> toV8(Float64Array* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
116 inline v8::Handle<v8::Value> toV8(PassRefPtr< Float64Array > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
118 return toV8(impl.get(), creationContext, isolate);
V8TestActiveDOMObject.h 73 inline v8::Handle<v8::Value> toV8(TestActiveDOMObject* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
117 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestActiveDOMObject > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
119 return toV8(impl.get(), creationContext, isolate);
V8TestCustomAccessors.h 81 inline v8::Handle<v8::Value> toV8(TestCustomAccessors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
125 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestCustomAccessors > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
127 return toV8(impl.get(), creationContext, isolate);
V8TestEvent.h 74 inline v8::Handle<v8::Value> toV8(TestEvent* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
118 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestEvent > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 return toV8(impl.get(), creationContext, isolate);
V8TestEventConstructor.h 75 inline v8::Handle<v8::Value> toV8(TestEventConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
119 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestEventConstructor > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
121 return toV8(impl.get(), creationContext, isolate);
V8TestEventTarget.h 76 inline v8::Handle<v8::Value> toV8(TestEventTarget* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestEventTarget > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
122 return toV8(impl.get(), creationContext, isolate);
V8TestException.h 73 inline v8::Handle<v8::Value> toV8(TestException* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
117 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestException > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
119 return toV8(impl.get(), creationContext, isolate);
V8TestExtendedEvent.h 77 inline v8::Handle<v8::Value> toV8(Event* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
121 inline v8::Handle<v8::Value> toV8(PassRefPtr< Event > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
123 return toV8(impl.get(), creationContext, isolate);
V8TestInterface.h 83 inline v8::Handle<v8::Value> toV8(TestInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
127 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestInterface > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
129 return toV8(impl.get(), creationContext, isolate);
V8TestInterfaceImplementedAs.h 73 inline v8::Handle<v8::Value> toV8(RealClass* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
117 inline v8::Handle<v8::Value> toV8(PassRefPtr< RealClass > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
119 return toV8(impl.get(), creationContext, isolate);
V8TestMediaQueryListListener.h 73 inline v8::Handle<v8::Value> toV8(TestMediaQueryListListener* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
117 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestMediaQueryListListener > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
119 return toV8(impl.get(), creationContext, isolate);
V8TestNamedConstructor.h 80 inline v8::Handle<v8::Value> toV8(TestNamedConstructor* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
124 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestNamedConstructor > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
126 return toV8(impl.get(), creationContext, isolate);
V8TestNode.h 76 inline v8::Handle<v8::Value> toV8(TestNode* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestNode > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
122 return toV8(impl.get(), creationContext, isolate);
V8TestObject.h 82 inline v8::Handle<v8::Value> toV8(TestObj* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
126 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestObj > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
128 return toV8(impl.get(), creationContext, isolate);
V8TestOverloadedConstructors.h 74 inline v8::Handle<v8::Value> toV8(TestOverloadedConstructors* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
118 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestOverloadedConstructors > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 return toV8(impl.get(), creationContext, isolate);
V8TestSerializedScriptValueInterface.h 74 inline v8::Handle<v8::Value> toV8(TestSerializedScriptValueInterface* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
118 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestSerializedScriptValueInterface > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 return toV8(impl.get(), creationContext, isolate);
V8TestTypedefs.h 74 inline v8::Handle<v8::Value> toV8(TestTypedefs* impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
118 inline v8::Handle<v8::Value> toV8(PassRefPtr< TestTypedefs > impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
120 return toV8(impl.get(), creationContext, isolate);

Completed in 377 milliseconds

1 2