GWT 2.7.0

Uses of Class
com.google.gwt.typedarrays.client.Uint8ArrayNative

Packages that use Uint8ArrayNative
com.google.gwt.typedarrays.client   
 

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

Fields in com.google.gwt.typedarrays.client declared as Uint8ArrayNative
protected  Uint8ArrayNative DataViewNativeEmul.tempBuffer
          A temporary buffer used for reversing bytes.
protected  Uint8ArrayNative DataViewNativeEmul.uint8Array
          A view of the underlying buffer as bytes.
 

Methods in com.google.gwt.typedarrays.client that return Uint8ArrayNative
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)
           
 

Methods in com.google.gwt.typedarrays.client with parameters of type Uint8ArrayNative
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.
 


GWT 2.7.0