GWT 2.7.0

Uses of Interface
com.google.gwt.typedarrays.shared.Uint16Array

Packages that use Uint16Array
com.google.gwt.typedarrays.client   
com.google.gwt.typedarrays.server   
com.google.gwt.typedarrays.shared   
 

Uses of Uint16Array in com.google.gwt.typedarrays.client
 

Classes in com.google.gwt.typedarrays.client that implement Uint16Array
 class Uint16ArrayNative
          JS native implementation of Uint16Array.
 

Methods in com.google.gwt.typedarrays.client that return Uint16Array
 Uint16Array NoSupportImpl.createUint16Array(ArrayBuffer buffer, int byteOffset, int length)
           
 Uint16Array Uint16ArrayNative.subarray(int begin)
           
 Uint16Array Uint16ArrayNative.subarray(int begin, int end)
           
 

Methods in com.google.gwt.typedarrays.client with parameters of type Uint16Array
 void Uint16ArrayNative.set(Uint16Array array)
           
 void Uint16ArrayNative.set(Uint16Array array, int offset)
           
static void JsUtils.set(Uint16Array dest, JsArrayInteger array)
           
static void JsUtils.set(Uint16Array dest, JsArrayInteger array, int offset)
           
 

Uses of Uint16Array in com.google.gwt.typedarrays.server
 

Classes in com.google.gwt.typedarrays.server that implement Uint16Array
 class Uint16ArrayImpl
          Pure Java implementation of Uint16Array.
 

Methods in com.google.gwt.typedarrays.server that return Uint16Array
 Uint16Array JavaImpl.createUint16Array(ArrayBuffer buffer, int byteOffset, int length)
           
 Uint16Array Uint16ArrayImpl.subarray(int begin)
           
 Uint16Array Uint16ArrayImpl.subarray(int begin, int end)
           
 

Methods in com.google.gwt.typedarrays.server with parameters of type Uint16Array
 void Uint16ArrayImpl.set(Uint16Array array)
           
 void Uint16ArrayImpl.set(Uint16Array array, int offset)
           
 

Uses of Uint16Array in com.google.gwt.typedarrays.shared
 

Methods in com.google.gwt.typedarrays.shared that return Uint16Array
static Uint16Array TypedArrays.createUint16Array(ArrayBuffer buffer)
          Create a Uint16Array 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).
 Uint16Array TypedArrays.Impl.createUint16Array(ArrayBuffer buffer)
           
static Uint16Array TypedArrays.createUint16Array(ArrayBuffer buffer, int byteOffset)
          Create a Uint16Array instance on buffer, starting at byteOffset into the buffer, continuing to the end of the buffer (which must be an integral number of elements).
 Uint16Array TypedArrays.Impl.createUint16Array(ArrayBuffer buffer, int byteOffset)
           
static Uint16Array TypedArrays.createUint16Array(ArrayBuffer buffer, int byteOffset, int length)
          Create a Uint16Array instance on buffer, starting at byteOffset into the buffer, continuing for length elements.
abstract  Uint16Array TypedArrays.Impl.createUint16Array(ArrayBuffer buffer, int byteOffset, int length)
           
static Uint16Array TypedArrays.createUint16Array(int length)
          Create a Uint16Array instance of length elements, backed by a new ArrayBuffer.
 Uint16Array TypedArrays.Impl.createUint16Array(int length)
           
 Uint16Array TypedArrays.Impl.createUint16Array(int[] array)
           
 Uint16Array Uint16Array.subarray(int begin)
          Create a new view from the same array, from offset to the end of this view.
 Uint16Array Uint16Array.subarray(int begin, int end)
          Create a new view from the same array, from offset to (but not including) end in this view.
 

Methods in com.google.gwt.typedarrays.shared with parameters of type Uint16Array
 void Uint16Array.set(Uint16Array array)
          Set multiple elements in this view from another view, storing starting at 0.
 void Uint16Array.set(Uint16Array array, int offset)
          Set multiple elements in this view from another view, storing starting at the requested offset.
 


GWT 2.7.0