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

1 2

  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferViewCustom.cpp 44 ArrayBufferView* V8ArrayBufferView::toNative(v8::Handle<v8::Object> object)
52 return V8Uint8Array::toNative(object);
55 return V8Int8Array::toNative(object);
58 return V8Uint16Array::toNative(object);
61 return V8Int16Array::toNative(object);
64 return V8Uint32Array::toNative(object);
67 return V8Int32Array::toNative(object);
70 return V8Float32Array::toNative(object);
73 return V8Float64Array::toNative(object);
76 return V8Uint8ClampedArray::toNative(object)
    [all...]
V8ArrayBufferCustom.cpp 76 ArrayBuffer* V8ArrayBuffer::toNative(v8::Handle<v8::Object> object)
82 return reinterpret_cast<ArrayBuffer*>(WebCore::toNative(object));
91 return reinterpret_cast<ArrayBuffer*>(WebCore::toNative(object));
96 return V8ArrayBuffer::hasInstance(value, isolate) ? V8ArrayBuffer::toNative(v8::Handle<v8::Object>::Cast(value)) : 0;
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8SVGTestInterface.h 23 static SVGTestInterface* toNative(v8::Handle<v8::Object> object)
V8TestException.h 23 static TestException* toNative(v8::Handle<v8::Object> object)
V8TestInterface.h 25 static TestInterfaceImplementation* toNative(v8::Handle<v8::Object> object)
V8TestInterface2.h 23 static TestInterface2* toNative(v8::Handle<v8::Object> object)
V8TestInterface3.h 23 static TestInterface3* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceCheckSecurity.h 23 static TestInterfaceCheckSecurity* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceConstructor.h 23 static TestInterfaceConstructor* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceConstructor2.h 23 static TestInterfaceConstructor2* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceConstructor3.h 23 static TestInterfaceConstructor3* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceCustomConstructor.h 23 static TestInterfaceCustomConstructor* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceDocument.h 24 static TestInterfaceDocument* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceEmpty.h 23 static TestInterfaceEmpty* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceEventConstructor.h 25 static TestInterfaceEventConstructor* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceGarbageCollected.h 24 static TestInterfaceGarbageCollected* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceNamedConstructor.h 29 static TestInterfaceNamedConstructor* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceNamedConstructor2.h 29 static TestInterfaceNamedConstructor2* toNative(v8::Handle<v8::Object> object)
V8TestInterfaceNode.h 24 static TestInterfaceNode* toNative(v8::Handle<v8::Object> object)
V8TestNode.h 24 static TestNode* toNative(v8::Handle<v8::Object> object)
V8TestObject.h 23 static TestObject* toNative(v8::Handle<v8::Object> object)
V8TestSpecialOperations.h 23 static TestSpecialOperations* toNative(v8::Handle<v8::Object> object)
V8TestSpecialOperationsNotEnumerable.h 23 static TestSpecialOperationsNotEnumerable* toNative(v8::Handle<v8::Object> object)
V8TestTypedefs.h 23 static TestTypedefs* toNative(v8::Handle<v8::Object> object)
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
interface.h 33 static {{cpp_class}}* toNative(v8::Handle<v8::Object> object)

Completed in 1093 milliseconds

1 2