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

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DInt8Array.h36 class Int8Array final : public IntegralTypedArrayBase<signed char> {
38 static inline PassRefPtr<Int8Array> create(unsigned length);
39 static inline PassRefPtr<Int8Array> create(const signed char* array, unsigned length);
40 static inline PassRefPtr<Int8Array> create(PassRefPtr<ArrayBuffer>, unsigned byteOffset, unsigned length);
44 static inline PassRefPtr<Int8Array> createUninitialized(unsigned length);
49 inline PassRefPtr<Int8Array> subarray(int start) const;
50 inline PassRefPtr<Int8Array> subarray(int start, int end) const;
58 inline Int8Array(PassRefPtr<ArrayBuffer>,
65 PassRefPtr<Int8Array> Int8Array
85 Int8Array::Int8Array(PassRefPtr<ArrayBuffer> buffer, unsigned byteOffset, unsigned length) function in class:WTF::Int8Array
[all...]
/external/chromium_org/v8/include/
H A Dv8.h1624 * Returns true if this value is an Int8Array.
3042 * An instance of Int8Array constructor (ES6 draft 15.13.6).
3045 class V8_EXPORT Int8Array : public TypedArray { class in namespace:v8
3047 static Local<Int8Array> New(Handle<ArrayBuffer> array_buffer,
3049 V8_INLINE static Int8Array* Cast(Value* obj);
3052 Int8Array();
6694 Int8Array* Int8Array::Cast(v8::Value* value) {
6698 return static_cast<Int8Array*>(value);

Completed in 153 milliseconds