Searched defs:Int16Array (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/html/canvas/
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.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...]
/external/v8/src/
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));

Completed in 2498 milliseconds