GWT 2.7.0

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

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

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

Classes in com.google.gwt.typedarrays.client that implement Uint8ClampedArray
 class Uint8ArrayNative
          JS native implementation of Uint8Array and, where natively supported, Uint8ClampedArray.
 class Uint8ClampedArrayNativeEmul
          Emulated version of Uint8ClampedArray that is implemented using a Uint8Array.
 

Methods in com.google.gwt.typedarrays.client that return Uint8ClampedArray
static Uint8ClampedArray Uint8ClampedArrayNativeEmul.create(ArrayBuffer buffer, int byteOffset, int length)
          Create a Uint8ClampedArray instance on an existing ArrayBuffer.
static Uint8ClampedArray Uint8ClampedArrayNativeEmul.create(JsArrayInteger array)
          Create a Uint8ClampedArray instance from a JavaScript array containing integers.
static Uint8ClampedArray Uint8ClampedArrayNativeEmul.create(short[] array)
          Create a Uint8ClampedArray instance from a short array.
 Uint8ClampedArray NativeImpl.createUint8ClampedArray(ArrayBuffer buffer)
           
 Uint8ClampedArray NativeImpl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
           
 Uint8ClampedArray NoSupportImpl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
           
 Uint8ClampedArray NativeImpl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
           
 Uint8ClampedArray NativeImpl.createUint8ClampedArray(int length)
           
static Uint8ClampedArray JsUtils.createUint8ClampedArray(JsArrayInteger array)
           
 Uint8ClampedArray NativeImpl.createUint8ClampedArray(short[] array)
           
 Uint8ClampedArray Uint8ClampedArrayNativeEmul.subarray(int begin)
           
 Uint8ClampedArray Uint8ClampedArrayNativeEmul.subarray(int begin, int end)
           
 

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

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

Classes in com.google.gwt.typedarrays.server that implement Uint8ClampedArray
 class Uint8ClampedArrayImpl
          Pure Java implementation of Uint8ClampedArray.
 

Methods in com.google.gwt.typedarrays.server that return Uint8ClampedArray
 Uint8ClampedArray JavaImpl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
           
 Uint8ClampedArray Uint8ClampedArrayImpl.subarray(int begin)
           
 Uint8ClampedArray Uint8ClampedArrayImpl.subarray(int begin, int end)
           
 

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

Methods in com.google.gwt.typedarrays.shared that return Uint8ClampedArray
static Uint8ClampedArray TypedArrays.createUint8ClampedArray(ArrayBuffer buffer)
          Create a Uint8ClampedArray instance on buffer, starting at starting at the beginning of the buffer and continuing to the end.
 Uint8ClampedArray TypedArrays.Impl.createUint8ClampedArray(ArrayBuffer buffer)
           
static Uint8ClampedArray TypedArrays.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
          Create a Uint8ClampedArray instance on buffer, starting at byteOffset into the buffer, continuing to the end of the buffer.
 Uint8ClampedArray TypedArrays.Impl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset)
           
static Uint8ClampedArray TypedArrays.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
          Create a Uint8ClampedArray instance on buffer, starting at byteOffset into the buffer, continuing for length elements.
abstract  Uint8ClampedArray TypedArrays.Impl.createUint8ClampedArray(ArrayBuffer buffer, int byteOffset, int length)
           
static Uint8ClampedArray TypedArrays.createUint8ClampedArray(int length)
          Create a Uint8ClampedArray instance of length elements, backed by a new ArrayBuffer.
 Uint8ClampedArray TypedArrays.Impl.createUint8ClampedArray(int length)
           
 Uint8ClampedArray TypedArrays.Impl.createUint8ClampedArray(short[] array)
           
 Uint8ClampedArray Uint8ClampedArray.subarray(int begin)
          Create a new view from the same array, from offset to the end of this view.
 Uint8ClampedArray Uint8ClampedArray.subarray(int begin, int end)
          Create a new view from the same array, from offset to (but not including) end in this view.
 


GWT 2.7.0