Searched refs:Int16Array (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/html/canvas/
H A DInt16Array.cpp27 #include "Int16Array.h"
31 PassRefPtr<Int16Array> Int16Array::create(unsigned length)
33 return TypedArrayBase<short>::create<Int16Array>(length);
36 PassRefPtr<Int16Array> Int16Array::create(short* array, unsigned length)
38 return TypedArrayBase<short>::create<Int16Array>(array, length);
41 PassRefPtr<Int16Array> Int16Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
43 return TypedArrayBase<short>::create<Int16Array>(buffe
46 Int16Array::Int16Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WebCore::Int16Array
[all...]
H A DInt16Array.h35 class Int16Array : public IntegralTypedArrayBase<short> { class in namespace:WebCore
37 static PassRefPtr<Int16Array> create(unsigned length);
38 static PassRefPtr<Int16Array> create(short* array, unsigned length);
39 static PassRefPtr<Int16Array> create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length);
44 PassRefPtr<Int16Array> subarray(int start) const;
45 PassRefPtr<Int16Array> subarray(int start, int end) const;
48 Int16Array(PassRefPtr<ArrayBuffer> buffer,
H A DInt16Array.idl37 ] Int16Array : ArrayBufferView {
41 Int16Array subarray(in long start, in [Optional] long end);
43 // void set(in Int16Array array, [Optional] in unsigned long offset);
/external/webkit/Source/WebCore/bindings/js/
H A DJSInt16ArrayCustom.cpp29 #include "Int16Array.h"
41 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, Int16Array* object)
54 RefPtr<Int16Array> array = constructArrayBufferView<Int16Array, short>(exec);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8Int16ArrayCustom.cpp33 #include "Int16Array.h"
45 INC_STATS("DOM.Int16Array.Contructor");
47 return constructWebGLArray<Int16Array, short>(args, &info, v8::kExternalShortArray);
52 INC_STATS("DOM.Int16Array.set()");
53 return setWebGLArrayHelper<Int16Array, V8Int16Array>(args);
56 v8::Handle<v8::Value> toV8(Int16Array* impl)
/external/v8/test/mjsunit/regress/
H A Dregress-98773.js30 var array = new Int16Array(23);
/external/v8/test/mjsunit/
H A Dexternal-array.js98 a = new Int16Array(2);
142 types = [Array, Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array,
H A Delements-kind.js140 assertKind(elements_kind.external_short, new Int16Array(666));
/external/webkit/Source/WebCore/workers/
H A DWorkerContext.idl124 attribute Int16ArrayConstructor Int16Array; // Usable with new operator
/external/v8/src/
H A Dd8.h319 static Handle<Value> Int16Array(const Arguments& args);
H A Dd8.cc476 Handle<Value> Shell::Int16Array(const Arguments& args) { function in class:v8::Shell
828 global_template->Set(String::New("Int16Array"),
829 FunctionTemplate::New(Int16Array));
/external/webkit/Source/WebCore/page/
H A DDOMWindow.idl508 attribute [JSCCustomGetter] Int16ArrayConstructor Int16Array; // Usable with new operator
/external/webkit/Source/WebCore/
H A DAndroid.mk383 html/canvas/Int16Array.cpp \

Completed in 230 milliseconds