Package | Description |
---|---|
com.google.gwt.typedarrays.client |
Modifier and Type | Field and Description |
---|---|
protected Uint8ArrayNative |
DataViewNativeEmul.tempBuffer
A temporary buffer used for reversing bytes.
|
protected Uint8ArrayNative |
DataViewNativeEmul.uint8Array
A view of the underlying buffer as bytes.
|
Modifier and Type | Method and Description |
---|---|
static Uint8ArrayNative |
Uint8ArrayNative.create(ArrayBuffer buffer)
Create a
Uint8Array instance. |
static Uint8ArrayNative |
Uint8ArrayNative.create(ArrayBuffer buffer,
int byteOffset)
Create a
Uint8Array instance. |
static Uint8ArrayNative |
Uint8ArrayNative.create(ArrayBuffer buffer,
int byteOffset,
int length)
Create a
Uint8Array instance. |
static Uint8ArrayNative |
Uint8ArrayNative.create(int length)
Create a
Uint8Array instance. |
static Uint8ArrayNative |
Uint8ArrayNative.create(int[] array)
Create a
Uint8Array instance from an array. |
static Uint8ArrayNative |
Uint8ArrayNative.create(JavaScriptObject array)
Create a
Uint8Array instance from a JavaScript array-like object. |
static Uint8ArrayNative |
Uint8ArrayNative.create(short[] array)
Create a
Uint8Array instance from an array. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(ArrayBuffer buffer)
Create a
Uint8ClampedArray instance. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(ArrayBuffer buffer,
int byteOffset)
Create a
Uint8ClampedArray instance. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(ArrayBuffer buffer,
int byteOffset,
int length)
Create a
Uint8ClampedArray instance. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(int length)
Create a
Uint8ClampedArray instance. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(int[] array)
Create a
Uint8Array instance from an array. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(JavaScriptObject array)
Create a
Uint8ClampedArray instance from a JavaScript array-like
object. |
static Uint8ArrayNative |
Uint8ArrayNative.createClamped(short[] array)
Create a
Uint8Array instance from an array. |
Uint8ArrayNative |
NativeImpl.createUint8Array(ArrayBuffer buffer) |
Uint8ArrayNative |
NativeImpl.createUint8Array(ArrayBuffer buffer,
int byteOffset) |
Uint8ArrayNative |
NativeImpl.createUint8Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Uint8ArrayNative |
NativeImpl.createUint8Array(int length) |
static Uint8ArrayNative |
JsUtils.createUint8Array(JsArrayInteger array) |
Uint8ArrayNative |
NativeImpl.createUint8Array(short[] array) |
Uint8ArrayNative |
Uint8ArrayNative.subarray(int begin) |
Uint8ArrayNative |
Uint8ArrayNative.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
protected void |
DataViewNativeEmul.reverseBytes(Uint8ArrayNative src,
int srcOfs,
int len,
Uint8ArrayNative dest,
int destOfs)
Copy bytes from the underlying buffer to a temporary buffer, reversing them
in the process.
|