Home
last modified time | relevance | path

Searched refs:Float32Array (Results 1 – 25 of 48) sorted by relevance

12

/arkcompiler/ets_runtime/test/aottest/aot_type_test/float32Array/
Dfloat32Array.ts18 let typedArray : Float32Array = new Float32Array(1);
/arkcompiler/ets_runtime/test/typeinfer/ldobjbyindex/
Dldobjbyindex.ts26 _array: Float32Array;
28 this._array = new Float32Array(2);
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts1347 declare class Float32Array extends Object {
1358 prototype: Float32Array;
1360 constructor(length: number): Float32Array;
1362 constructor(array: ArrayLike<number> | ArrayBufferLike): Float32Array;
1364 constructor(buffer: ArrayBufferLike, byteOffset?: number, length?: number): Float32Array;
1366 constructor(elements: Iterable<number>): Float32Array;
1368 constructor(): Float32Array;
1370 static of(...items: number[]): Float32Array;
1372 static from(arrayLike: ArrayLike<number>): Float32Array;
1374 … from<T>(arrayLike: ArrayLike<T>, mapfn: (v: T, k: number) => number, thisArg?: any): Float32Array;
[all …]
/arkcompiler/ets_runtime/test/moduletest/typedarrayjoin/
Dtypedarrayjoin.js22 [Float32Array, [0, 1]],
51 [Float32Array, [0, 1]],
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DTypedArrays.ets7548 * JS Float32Array API-compatible class
7550 export final class Float32Array {
7554 * Creates an empty Float32Array.
7561 * Creates an Float32Array with respect to data, byteOffset and length.
7567 * @param length size of elements of type float in newly created Float32Array
7574 * Creates an Float32Array with respect to data, byteOffset and length.
7580 * @param length size of elements of type float in newly created Float32Array
7583 if (buf.getByteLength() % Float32Array.BYTES_PER_ELEMENT as int != 0) {
7584 …throw new RangeError("ArrayBuffer.byteLength should be multiple of 4 as Float32Array.BYTES_PER_ELE…
7586 if (byteOffset % Float32Array.BYTES_PER_ELEMENT as int != 0) {
[all …]
/arkcompiler/ets_runtime/test/moduletest/setobjectwithproto/
Dsetobjectwithproto.js39 Float64Array.__proto__ = Float32Array
/arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/
Dtryldglobalbyname_global_object.ts403 print(Float32Array);
404 globalThis.Float32Array = "Float32Array";
405 print(Float32Array);
406 delete globalThis.Float32Array;
408 print(Float32Array);
Dexpect_output.txt110 function Float32Array() { [native code] }
111 Float32Array
112 ReferenceError: Float32Array is not defined
/arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/
Dtypedarraysubarray.js18 Float32Array,
/arkcompiler/ets_runtime/test/moduletest/typedarraynan/
Dtypedarraynan.js33 const v20 = new Float32Array(v18);
/arkcompiler/ets_runtime/test/moduletest/typedarrayslice/
Dtypearrayslice.js18 Float32Array,
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_lazy_callback.h35 V(Float32Array) \
68 static JSTaggedValue Float32Array(JSThread *thread, const JSHandle<JSObject> &obj);
/arkcompiler/ets_runtime/test/moduletest/bindfunction/
Dbindfunction.js78 const v21 = Float32Array.bind(v6, 1, 2);
Dexpect_output.txt21 function bound Float32Array() { [native code] }
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dfunction_spread_arg.ts50 let a13 = new Float32Array(10)
Dfor_stmts.ts107 const a13 = new Float32Array(10);
202 class MyFloat32Array extends Float32Array {}
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dfunction_spread_arg.ts50 let a13 = new Float32Array(10)
Dfor_stmts.ts107 const a13 = new Float32Array(10);
202 class MyFloat32Array extends Float32Array {}
/arkcompiler/ets_runtime/test/moduletest/typedarraywith/
Dtypedarraywith.js25 Float32Array,
Dexpect_output.txt15 Float32Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dexpect_output.txt15 Float32Array test success !!!
Dtypedarraytosorted.js25 Float32Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt15 Float32Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt15 Float32Array test success !!!
Dtypedarrayat.js24 Float32Array,

12