Package | Description |
---|---|
com.google.gwt.typedarrays.client | |
com.google.gwt.typedarrays.server | |
com.google.gwt.typedarrays.shared |
Modifier and Type | Class and Description |
---|---|
class |
Int16ArrayNative
JS native implementation of
Int16Array . |
Modifier and Type | Method and Description |
---|---|
Int16Array |
NoSupportImpl.createInt16Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Int16Array |
Int16ArrayNative.subarray(int begin) |
Int16Array |
Int16ArrayNative.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
Int16ArrayNative.set(Int16Array array) |
void |
Int16ArrayNative.set(Int16Array array,
int offset) |
static void |
JsUtils.set(Int16Array dest,
JsArrayInteger array) |
static void |
JsUtils.set(Int16Array dest,
JsArrayInteger array,
int offset) |
Modifier and Type | Class and Description |
---|---|
class |
Int16ArrayImpl
Pure Java implementation of
Int16Array . |
Modifier and Type | Method and Description |
---|---|
Int16Array |
JavaImpl.createInt16Array(ArrayBuffer buffer,
int byteOffset,
int length) |
Int16Array |
Int16ArrayImpl.subarray(int begin) |
Int16Array |
Int16ArrayImpl.subarray(int begin,
int end) |
Modifier and Type | Method and Description |
---|---|
void |
Int16ArrayImpl.set(Int16Array array) |
void |
Int16ArrayImpl.set(Int16Array array,
int offset) |
Modifier and Type | Method and Description |
---|---|
static Int16Array |
TypedArrays.createInt16Array(ArrayBuffer buffer)
Create a
Int16Array 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). |
Int16Array |
TypedArrays.Impl.createInt16Array(ArrayBuffer buffer) |
static Int16Array |
TypedArrays.createInt16Array(ArrayBuffer buffer,
int byteOffset)
Create a
Int16Array instance on buffer , starting at
byteOffset into the buffer, continuing to the end of the buffer
(which must be an integral number of elements). |
Int16Array |
TypedArrays.Impl.createInt16Array(ArrayBuffer buffer,
int byteOffset) |
static Int16Array |
TypedArrays.createInt16Array(ArrayBuffer buffer,
int byteOffset,
int length)
Create a
Int16Array instance on buffer , starting at
byteOffset into the buffer, continuing for length
elements. |
abstract Int16Array |
TypedArrays.Impl.createInt16Array(ArrayBuffer buffer,
int byteOffset,
int length) |
static Int16Array |
TypedArrays.createInt16Array(int length)
|
Int16Array |
TypedArrays.Impl.createInt16Array(int length) |
Int16Array |
TypedArrays.Impl.createInt16Array(short[] array) |
Int16Array |
Int16Array.subarray(int begin)
Create a new view from the same array, from
offset to the end of
this view. |
Int16Array |
Int16Array.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 |
Int16Array.set(Int16Array array)
Set multiple elements in this view from another view, storing starting at 0.
|
void |
Int16Array.set(Int16Array array,
int offset)
Set multiple elements in this view from another view, storing starting at the
requested offset.
|