Home
last modified time | relevance | path

Searched refs:TypedArrayBase (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DFloat64Array.h35 class Float64Array : public TypedArrayBase<double> {
45 using TypedArrayBase<double>::set;
49 if (index >= TypedArrayBase<double>::m_length) in set()
51 TypedArrayBase<double>::data()[index] = static_cast<double>(value); in set()
67 friend class TypedArrayBase<double>; variable
72 return TypedArrayBase<double>::create<Float64Array>(length); in create()
77 return TypedArrayBase<double>::create<Float64Array>(array, length); in create()
82 return TypedArrayBase<double>::create<Float64Array>(buffer, byteOffset, length); in create()
87 return TypedArrayBase<double>::createUninitialized<Float64Array>(length); in createUninitialized()
91 : TypedArrayBase<double>(buffer, byteOffset, length) in Float64Array()
DFloat32Array.h35 class Float32Array : public TypedArrayBase<float> {
45 using TypedArrayBase<float>::set;
49 if (index >= TypedArrayBase<float>::m_length) in set()
51 TypedArrayBase<float>::data()[index] = static_cast<float>(value); in set()
67 friend class TypedArrayBase<float>; variable
72 return TypedArrayBase<float>::create<Float32Array>(length); in create()
77 return TypedArrayBase<float>::create<Float32Array>(array, length); in create()
82 return TypedArrayBase<float>::create<Float32Array>(buffer, byteOffset, length); in create()
87 return TypedArrayBase<float>::createUninitialized<Float32Array>(length); in createUninitialized()
91 : TypedArrayBase<float>(buffer, byteOffset, length) in Float32Array()
DInt8Array.h46 using TypedArrayBase<signed char>::set;
62 friend class TypedArrayBase<signed char>; variable
67 return TypedArrayBase<signed char>::create<Int8Array>(length); in create()
72 return TypedArrayBase<signed char>::create<Int8Array>(array, length); in create()
77 return TypedArrayBase<signed char>::create<Int8Array>(buffer, byteOffset, length); in create()
82 return TypedArrayBase<signed char>::createUninitialized<Int8Array>(length); in createUninitialized()
DUint32Array.h46 using TypedArrayBase<unsigned>::set;
62 friend class TypedArrayBase<unsigned int>; variable
67 return TypedArrayBase<unsigned int>::create<Uint32Array>(length); in create()
72 return TypedArrayBase<unsigned int>::create<Uint32Array>(array, length); in create()
77 return TypedArrayBase<unsigned int>::create<Uint32Array>(buffer, byteOffset, length); in create()
82 return TypedArrayBase<unsigned int>::createUninitialized<Uint32Array>(length); in createUninitialized()
DInt16Array.h45 using TypedArrayBase<short>::set;
61 friend class TypedArrayBase<short>; variable
66 return TypedArrayBase<short>::create<Int16Array>(length); in create()
71 return TypedArrayBase<short>::create<Int16Array>(array, length); in create()
76 return TypedArrayBase<short>::create<Int16Array>(buffer, byteOffset, length); in create()
81 return TypedArrayBase<short>::createUninitialized<Int16Array>(length); in createUninitialized()
DUint16Array.h46 using TypedArrayBase<unsigned short>::set;
62 friend class TypedArrayBase<unsigned short>; variable
67 return TypedArrayBase<unsigned short>::create<Uint16Array>(length); in create()
72 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length); in create()
77 return TypedArrayBase<unsigned short>::create<Uint16Array>(buffer, byteOffset, length); in create()
82 return TypedArrayBase<unsigned short>::createUninitialized<Uint16Array>(length); in createUninitialized()
DUint8Array.h46 using TypedArrayBase<unsigned char>::set;
62 friend class TypedArrayBase<unsigned char>; variable
67 return TypedArrayBase<unsigned char>::create<Uint8Array>(length); in create()
72 return TypedArrayBase<unsigned char>::create<Uint8Array>(array, length); in create()
77 return TypedArrayBase<unsigned char>::create<Uint8Array>(buffer, byteOffset, length); in create()
82 return TypedArrayBase<unsigned char>::createUninitialized<Uint8Array>(length); in createUninitialized()
DInt32Array.h44 using TypedArrayBase<int>::set;
60 friend class TypedArrayBase<int>; variable
65 return TypedArrayBase<int>::create<Int32Array>(length); in create()
70 return TypedArrayBase<int>::create<Int32Array>(array, length); in create()
75 return TypedArrayBase<int>::create<Int32Array>(buffer, byteOffset, length); in create()
80 return TypedArrayBase<int>::createUninitialized<Int32Array>(length); in createUninitialized()
DUint8ClampedArray.h51 using TypedArrayBase<unsigned char>::set;
67 friend class TypedArrayBase<unsigned char>; variable
72 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(length); in create()
77 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(array, length); in create()
82 return TypedArrayBase<unsigned char>::create<Uint8ClampedArray>(buffer, byteOffset, length); in create()
87 return TypedArrayBase<unsigned char>::createUninitialized<Uint8ClampedArray>(length); in createUninitialized()
DIntegralTypedArrayBase.h40 class IntegralTypedArrayBase : public TypedArrayBase<T> {
44 if (index >= TypedArrayBase<T>::m_length) in set()
50 TypedArrayBase<T>::data()[index] = static_cast<T>(static_cast<int64_t>(value)); in set()
55 : TypedArrayBase<T>(buffer, byteOffset, length) in IntegralTypedArrayBase()
DTypedArrayBase.h36 class TypedArrayBase : public ArrayBufferView {
40 bool set(TypedArrayBase<T>* array, unsigned offset) in set()
72 ASSERT_WITH_SECURITY_IMPLICATION(index < TypedArrayBase<T>::m_length); in item()
73 return TypedArrayBase<T>::data()[index]; in item()
85 TypedArrayBase(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) in TypedArrayBase() function
153 using WTF::TypedArrayBase;
Dwtf.gypi139 'TypedArrayBase.h',
/external/chromium_org/tools/gn/secondary/third_party/WebKit/Source/wtf/
DBUILD.gn169 "TypedArrayBase.h",