Searched defs:Uint16Array (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DUint16Array.h36 class Uint16Array final : public IntegralTypedArrayBase<unsigned short> {
38 static inline PassRefPtr<Uint16Array> create(unsigned length);
39 static inline PassRefPtr<Uint16Array> create(const unsigned short* array, unsigned length);
40 static inline PassRefPtr<Uint16Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint16Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Uint16Array> subarray(int start) const;
50 inline PassRefPtr<Uint16Array> subarray(int start, int end) const;
58 inline Uint16Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Uint16Array> Uint16Array
85 Uint16Array::Uint16Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Uint16Array
[all...]
/external/chromium_org/v8/include/
H A Dv8.h1630 * Returns true if this value is an Uint16Array.
3058 * An instance of Uint16Array constructor (ES6 draft 15.13.6).
3061 class V8_EXPORT Uint16Array : public TypedArray { class in namespace:v8
3063 static Local<Uint16Array> New(Handle<ArrayBuffer> array_buffer,
3065 V8_INLINE static Uint16Array* Cast(Value* obj);
3068 Uint16Array();
6702 Uint16Array* Uint16Array::Cast(v8::Value* value) {
6706 return static_cast<Uint16Array*>(value);

Completed in 93 milliseconds