Uses of Class
org.mozilla.javascript.typedarrays.NativeArrayBuffer
-
Packages that use NativeArrayBuffer Package Description org.mozilla.javascript.typedarrays -
-
Uses of NativeArrayBuffer in org.mozilla.javascript.typedarrays
Fields in org.mozilla.javascript.typedarrays declared as NativeArrayBuffer Modifier and Type Field Description protected NativeArrayBuffer
NativeArrayBufferView. arrayBuffer
Many view objects can share the same backing arrayMethods in org.mozilla.javascript.typedarrays that return NativeArrayBuffer Modifier and Type Method Description NativeArrayBuffer
NativeArrayBufferView. getBuffer()
Return the buffer that backs this view.private NativeArrayBuffer
NativeTypedArrayView. makeArrayBuffer(Context cx, Scriptable scope, int length)
private static NativeArrayBuffer
NativeArrayBuffer. realThis(Scriptable thisObj, IdFunctionObject f)
NativeArrayBuffer
NativeArrayBuffer. slice(double s, double e)
Return a new buffer that represents a slice of this buffer's content, starting at position "start" and ending at position "end".Methods in org.mozilla.javascript.typedarrays with parameters of type NativeArrayBuffer Modifier and Type Method Description protected NativeFloat32Array
NativeFloat32Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeFloat64Array
NativeFloat64Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeInt16Array
NativeInt16Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeInt32Array
NativeInt32Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeInt8Array
NativeInt8Array. construct(NativeArrayBuffer ab, int off, int len)
protected abstract NativeTypedArrayView<T>
NativeTypedArrayView. construct(NativeArrayBuffer ab, int off, int len)
protected NativeUint16Array
NativeUint16Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeUint32Array
NativeUint32Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeUint8Array
NativeUint8Array. construct(NativeArrayBuffer ab, int off, int len)
protected NativeUint8ClampedArray
NativeUint8ClampedArray. construct(NativeArrayBuffer ab, int off, int len)
Constructors in org.mozilla.javascript.typedarrays with parameters of type NativeArrayBuffer Constructor Description NativeArrayBufferView(NativeArrayBuffer ab, int offset, int byteLength)
NativeDataView(NativeArrayBuffer ab, int offset, int length)
NativeFloat32Array(NativeArrayBuffer ab, int off, int len)
NativeFloat64Array(NativeArrayBuffer ab, int off, int len)
NativeInt16Array(NativeArrayBuffer ab, int off, int len)
NativeInt32Array(NativeArrayBuffer ab, int off, int len)
NativeInt8Array(NativeArrayBuffer ab, int off, int len)
NativeTypedArrayView(NativeArrayBuffer ab, int off, int len, int byteLen)
NativeUint16Array(NativeArrayBuffer ab, int off, int len)
NativeUint32Array(NativeArrayBuffer ab, int off, int len)
NativeUint8Array(NativeArrayBuffer ab, int off, int len)
NativeUint8ClampedArray(NativeArrayBuffer ab, int off, int len)
-