Searched refs:Float64Array (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/html/canvas/
H A DFloat64Array.cpp28 #include "Float64Array.h"
32 PassRefPtr<Float64Array> Float64Array::create(unsigned length)
34 return TypedArrayBase<double>::create<Float64Array>(length);
37 PassRefPtr<Float64Array> Float64Array::create(const double* array, unsigned length)
39 return TypedArrayBase<double>::create<Float64Array>(array, length);
42 PassRefPtr<Float64Array> Float64Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
44 return TypedArrayBase<double>::create<Float64Array>(buffe
47 Float64Array::Float64Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WebCore::Float64Array
[all...]
H A DFloat64Array.h35 class Float64Array : public TypedArrayBase<double> { class in namespace:WebCore
37 static PassRefPtr<Float64Array> create(unsigned length);
38 static PassRefPtr<Float64Array> create(const double* array, unsigned length);
39 static PassRefPtr<Float64Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
59 PassRefPtr<Float64Array> subarray(int start) const;
60 PassRefPtr<Float64Array> subarray(int start, int end) const;
63 Float64Array(PassRefPtr<ArrayBuffer>,
H A DFloat64Array.idl38 ] Float64Array : ArrayBufferView {
42 Float64Array subarray(in long start, in [Optional] long end);
44 // void set(in Float64Array array, [Optional] in unsigned long offset);
/external/webkit/Source/WebCore/bindings/js/
H A DJSFloat64ArrayCustom.cpp29 #include "Float64Array.h"
41 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Float64Array* object)
54 RefPtr<Float64Array> array = constructArrayBufferView<Float64Array, double>(exec);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8Float64ArrayCustom.cpp27 #include "Float64Array.h"
40 INC_STATS("DOM.Float64Array.Contructor");
42 return constructWebGLArray<Float64Array, double>(args, &info, v8::kExternalDoubleArray);
47 INC_STATS("DOM.Float64Array.set()");
48 return setWebGLArrayHelper<Float64Array, V8Float64Array>(args);
51 v8::Handle<v8::Value> toV8(Float64Array* impl)
/external/v8/test/mjsunit/
H A Dexternal-array.js109 var array = new Float64Array(2);
143 Uint32Array, PixelArray, Float32Array, Float64Array];
343 var float64_array = new Float64Array(1);
H A Delements-kind.js145 assertKind(elements_kind.external_double, new Float64Array(0));
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.idl129 attribute Float64ArrayConstructor Float64Array; // Usable with new operator
/external/v8/src/
H A Dd8.h324 static Handle<Value> Float64Array(const Arguments& args);
H A Dd8.cc503 Handle<Value> Shell::Float64Array(const Arguments& args) { function in class:v8::Shell
838 global_template->Set(String::New("Float64Array"),
839 FunctionTemplate::New(Float64Array));
/external/webkit/Source/WebCore/page/
H A DDOMWindow.idl513 attribute [JSCCustomGetter] Float64ArrayConstructor Float64Array; // Usable with new operator
/external/webkit/Source/WebCore/
H A DAndroid.mk382 html/canvas/Float64Array.cpp \

Completed in 140 milliseconds