/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | Float64Array.h | 35 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()
|
D | Float32Array.h | 35 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()
|
D | Int8Array.h | 46 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()
|
D | Uint32Array.h | 46 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()
|
D | Int16Array.h | 45 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()
|
D | Uint16Array.h | 46 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()
|
D | Uint8Array.h | 46 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()
|
D | Int32Array.h | 44 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()
|
D | Uint8ClampedArray.h | 51 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()
|
D | IntegralTypedArrayBase.h | 40 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()
|
D | TypedArrayBase.h | 36 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;
|
D | wtf.gypi | 139 'TypedArrayBase.h',
|
/external/chromium_org/tools/gn/secondary/third_party/WebKit/Source/wtf/ |
D | BUILD.gn | 169 "TypedArrayBase.h",
|