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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DUint8Array.h36 class Uint8Array : public IntegralTypedArrayBase<unsigned char> { class in namespace:WTF
38 static inline PassRefPtr<Uint8Array> create(unsigned length);
39 static inline PassRefPtr<Uint8Array> create(const unsigned char* array, unsigned length);
40 static inline PassRefPtr<Uint8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Uint8Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Uint8Array> subarray(int start) const;
50 inline PassRefPtr<Uint8Array> subarray(int start, int end) const;
58 inline Uint8Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Uint8Array> Uint8Array
85 Uint8Array::Uint8Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Uint8Array
[all...]
/external/chromium_org/v8/include/
H A Dv8.h1612 * Returns true if this value is an Uint8Array.
3011 * An instance of Uint8Array constructor (ES6 draft 15.13.6).
3014 class V8_EXPORT Uint8Array : public TypedArray { class in namespace:v8
3016 static Local<Uint8Array> New(Handle<ArrayBuffer> array_buffer,
3018 V8_INLINE static Uint8Array* Cast(Value* obj);
3021 Uint8Array();
6686 Uint8Array* Uint8Array::Cast(v8::Value* value) {
6690 return static_cast<Uint8Array*>(value);

Completed in 723 milliseconds