| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2009 Google Inc. All rights reserved. | 3 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #ifndef Uint16Array_h | 27 #ifndef Uint16Array_h |
| 28 #define Uint16Array_h | 28 #define Uint16Array_h |
| 29 | 29 |
| 30 #include "wtf/IntegralTypedArrayBase.h" | 30 #include "wtf/IntegralTypedArrayBase.h" |
| 31 | 31 |
| 32 namespace WTF { | 32 namespace WTF { |
| 33 | 33 |
| 34 class ArrayBuffer; | 34 class ArrayBuffer; |
| 35 | 35 |
| 36 class Uint16Array final : public IntegralTypedArrayBase<unsigned short> { | 36 class Uint16Array final : public IntegralTypedArrayBase<unsigned short> { |
| 37 public: | 37 public: |
| 38 static inline PassRefPtr<Uint16Array> create(unsigned length); | 38 static inline PassRefPtr<Uint16Array> create(unsigned length); |
| 39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, un
signed length); | 39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, |
| 40 static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, unsign
ed byteOffset, unsigned length); | 40 unsigned length); |
| 41 static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, |
| 42 unsigned byteOffset, |
| 43 unsigned length); |
| 41 | 44 |
| 42 using TypedArrayBase<unsigned short>::set; | 45 using TypedArrayBase<unsigned short>::set; |
| 43 using IntegralTypedArrayBase<unsigned short>::set; | 46 using IntegralTypedArrayBase<unsigned short>::set; |
| 44 | 47 |
| 45 ViewType type() const override | 48 ViewType type() const override { return TypeUint16; } |
| 46 { | |
| 47 return TypeUint16; | |
| 48 } | |
| 49 | 49 |
| 50 private: | 50 private: |
| 51 inline Uint16Array(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned le
ngth); | 51 inline Uint16Array(PassRefPtr<ArrayBuffer>, |
| 52 // Make constructor visible to superclass. | 52 unsigned byteOffset, |
| 53 friend class TypedArrayBase<unsigned short>; | 53 unsigned length); |
| 54 // Make constructor visible to superclass. |
| 55 friend class TypedArrayBase<unsigned short>; |
| 54 }; | 56 }; |
| 55 | 57 |
| 56 PassRefPtr<Uint16Array> Uint16Array::create(unsigned length) | 58 PassRefPtr<Uint16Array> Uint16Array::create(unsigned length) { |
| 57 { | 59 return TypedArrayBase<unsigned short>::create<Uint16Array>(length); |
| 58 return TypedArrayBase<unsigned short>::create<Uint16Array>(length); | |
| 59 } | 60 } |
| 60 | 61 |
| 61 PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, unsigne
d length) | 62 PassRefPtr<Uint16Array> Uint16Array::create(const unsigned short* array, |
| 62 { | 63 unsigned length) { |
| 63 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length); | 64 return TypedArrayBase<unsigned short>::create<Uint16Array>(array, length); |
| 64 } | 65 } |
| 65 | 66 |
| 66 PassRefPtr<Uint16Array> Uint16Array::create(PassRefPtr<ArrayBuffer> buffer, unsi
gned byteOffset, unsigned length) | 67 PassRefPtr<Uint16Array> Uint16Array::create(PassRefPtr<ArrayBuffer> buffer, |
| 67 { | 68 unsigned byteOffset, |
| 68 return TypedArrayBase<unsigned short>::create<Uint16Array>(buffer, byteOffse
t, length); | 69 unsigned length) { |
| 70 return TypedArrayBase<unsigned short>::create<Uint16Array>(buffer, byteOffset, |
| 71 length); |
| 69 } | 72 } |
| 70 | 73 |
| 71 Uint16Array::Uint16Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, un
signed length) | 74 Uint16Array::Uint16Array(PassRefPtr<ArrayBuffer> buffer, |
| 72 : IntegralTypedArrayBase<unsigned short>(buffer, byteOffset, length) | 75 unsigned byteOffset, |
| 73 { | 76 unsigned length) |
| 74 } | 77 : IntegralTypedArrayBase<unsigned short>(buffer, byteOffset, length) {} |
| 75 | 78 |
| 76 } // namespace WTF | 79 } // namespace WTF |
| 77 | 80 |
| 78 using WTF::Uint16Array; | 81 using WTF::Uint16Array; |
| 79 | 82 |
| 80 #endif // Uint16Array_h | 83 #endif // Uint16Array_h |
| OLD | NEW |