Home | History | Annotate | Download | only in wtf

Lines Matching defs:Int32Array

34 class Int32Array : public IntegralTypedArrayBase<int> {
36 static inline PassRefPtr<Int32Array> create(unsigned length);
37 static inline PassRefPtr<Int32Array> create(const int* array, unsigned length);
38 static inline PassRefPtr<Int32Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
42 static inline PassRefPtr<Int32Array> createUninitialized(unsigned length);
47 inline PassRefPtr<Int32Array> subarray(int start) const;
48 inline PassRefPtr<Int32Array> subarray(int start, int end) const;
56 inline Int32Array(PassRefPtr<ArrayBuffer>,
63 PassRefPtr<Int32Array> Int32Array::create(unsigned length)
65 return TypedArrayBase<int>::create<Int32Array>(length);
68 PassRefPtr<Int32Array> Int32Array::create(const int* array, unsigned length)
70 return TypedArrayBase<int>::create<Int32Array>(array, length);
73 PassRefPtr<Int32Array> Int32Array::create(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
75 return TypedArrayBase<int>::create<Int32Array>(buffer, byteOffset, length);
78 PassRefPtr<Int32Array> Int32Array::createUninitialized(unsigned length)
80 return TypedArrayBase<int>::createUninitialized<Int32Array>(length);
83 Int32Array::Int32Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length)
88 PassRefPtr<Int32Array> Int32Array::subarray(int start) const
93 PassRefPtr<Int32Array> Int32Array::subarray(int start, int end) const
95 return subarrayImpl<Int32Array>(start, end);
100 using WTF::Int32Array;