Package | Description |
---|---|
com.google.gwt.typedarrays.client | |
com.google.gwt.typedarrays.server | |
com.google.gwt.typedarrays.shared |
Modifier and Type | Class and Description |
---|---|
class |
Uint8ArrayNative
JS native implementation of
Uint8Array and, where natively supported,
Uint8ClampedArray . |
class |
Uint8ClampedArrayNativeEmul
Emulated version of
Uint8ClampedArray that is implemented using a Uint8Array . |
Modifier and Type | Method and Description |
---|---|
Uint8Array |
NoSupportImpl.createUint8Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Modifier and Type | Method and Description |
---|---|
void |
Uint8ClampedArrayNativeEmul.set(Uint8Array array) |
void |
Uint8ArrayNative.set(Uint8Array array) |
void |
Uint8ClampedArrayNativeEmul.set(Uint8Array array,
int offset) |
void |
Uint8ArrayNative.set(Uint8Array array,
int offset) |
static void |
JsUtils.set(Uint8Array dest,
JsArrayInteger array) |
static void |
JsUtils.set(Uint8Array dest,
JsArrayInteger array,
int offset) |
Modifier and Type | Class and Description |
---|---|
class |
Uint8ArrayImpl
Pure Java implementation of
Uint8Array . |
class |
Uint8ClampedArrayImpl
Pure Java implementation of
Uint8ClampedArray . |
Modifier and Type | Method and Description |
---|---|
Uint8Array |
JavaImpl.createUint8Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Uint8Array |
Uint8ArrayImpl.subarray(int begin) |
Uint8Array |
Uint8ArrayImpl.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
Uint8ArrayImpl.set(Uint8Array array) |
void |
Uint8ArrayImpl.set(Uint8Array array,
int offset) |
Modifier and Type | Interface and Description |
---|---|
interface |
Uint8ClampedArray
A view representing an
ArrayBuffer as 8-bit unsigned integers. |
Modifier and Type | Method and Description |
---|---|
static Uint8Array |
TypedArrays.createUint8Array(ArrayBuffer buffer)
Create a
Uint8Array instance on buffer , starting at
starting at the beginning of the buffer and continuing to the end (which
must be an integral number of elements). |
Uint8Array |
TypedArrays.Impl.createUint8Array(ArrayBuffer buffer) |
static Uint8Array |
TypedArrays.createUint8Array(ArrayBuffer buffer,
int byteOffset)
Create a
Uint8Array instance on buffer , starting at
byteOffset into the buffer, continuing to the end of the buffer. |
Uint8Array |
TypedArrays.Impl.createUint8Array(ArrayBuffer buffer,
int byteOffset) |
static Uint8Array |
TypedArrays.createUint8Array(ArrayBuffer buffer,
int byteOffset,
int length)
Create a
Uint8Array instance on buffer , starting at
byteOffset into the buffer, continuing for length
elements. |
abstract Uint8Array |
TypedArrays.Impl.createUint8Array(ArrayBuffer buffer,
int byteOffset,
int length) |
static Uint8Array |
TypedArrays.createUint8Array(int length)
|
Uint8Array |
TypedArrays.Impl.createUint8Array(int length) |
Uint8Array |
TypedArrays.Impl.createUint8Array(short[] array) |
Uint8Array |
Uint8Array.subarray(int begin)
Create a new view from the same array, from
offset to the end of
this view. |
Uint8Array |
Uint8Array.subarray(int begin,
int end)
Create a new view from the same array, from
offset to (but not
including) end in this view. |
Modifier and Type | Method and Description |
---|---|
void |
Uint8Array.set(Uint8Array array)
Set multiple elements in this view from another view, storing starting at 0.
|
void |
Uint8Array.set(Uint8Array array,
int offset)
Set multiple elements in this view from another view, storing starting at the
requested offset.
|