Searched refs:Float32Array (Results 1 – 25 of 48) sorted by relevance
12
| /arkcompiler/ets_runtime/test/aottest/aot_type_test/float32Array/ |
| D | float32Array.ts | 18 let typedArray : Float32Array = new Float32Array(1);
|
| /arkcompiler/ets_runtime/test/typeinfer/ldobjbyindex/ |
| D | ldobjbyindex.ts | 26 _array: Float32Array; 28 this._array = new Float32Array(2);
|
| /arkcompiler/ets_runtime/ecmascript/ts_types/ |
| D | lib_ark_builtins.d.ts | 1347 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/ |
| D | typedarrayjoin.js | 22 [Float32Array, [0, 1]], 51 [Float32Array, [0, 1]],
|
| /arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/ |
| D | TypedArrays.ets | 7548 * 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/ |
| D | setobjectwithproto.js | 39 Float64Array.__proto__ = Float32Array
|
| /arkcompiler/ets_runtime/test/aottest/tryldglobalbyname_global_object/ |
| D | tryldglobalbyname_global_object.ts | 403 print(Float32Array); 404 globalThis.Float32Array = "Float32Array"; 405 print(Float32Array); 406 delete globalThis.Float32Array; 408 print(Float32Array);
|
| D | expect_output.txt | 110 function Float32Array() { [native code] } 111 Float32Array 112 ReferenceError: Float32Array is not defined
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraysubarray/ |
| D | typedarraysubarray.js | 18 Float32Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraynan/ |
| D | typedarraynan.js | 33 const v20 = new Float32Array(v18);
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayslice/ |
| D | typearrayslice.js | 18 Float32Array,
|
| /arkcompiler/ets_runtime/ecmascript/builtins/ |
| D | builtins_lazy_callback.h | 35 V(Float32Array) \ 68 static JSTaggedValue Float32Array(JSThread *thread, const JSHandle<JSObject> &obj);
|
| /arkcompiler/ets_runtime/test/moduletest/bindfunction/ |
| D | bindfunction.js | 78 const v21 = Float32Array.bind(v6, 1, 2);
|
| D | expect_output.txt | 21 function bound Float32Array() { [native code] }
|
| /arkcompiler/ets_frontend/ets2panda/linter/test/ |
| D | function_spread_arg.ts | 50 let a13 = new Float32Array(10)
|
| D | for_stmts.ts | 107 const a13 = new Float32Array(10); 202 class MyFloat32Array extends Float32Array {}
|
| /arkcompiler/ets_frontend/ets2panda/linter-4.2/test/ |
| D | function_spread_arg.ts | 50 let a13 = new Float32Array(10)
|
| D | for_stmts.ts | 107 const a13 = new Float32Array(10); 202 class MyFloat32Array extends Float32Array {}
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraywith/ |
| D | typedarraywith.js | 25 Float32Array,
|
| D | expect_output.txt | 15 Float32Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/ |
| D | expect_output.txt | 15 Float32Array test success !!!
|
| D | typedarraytosorted.js | 25 Float32Array,
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/ |
| D | expect_output.txt | 15 Float32Array test success !!!
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayat/ |
| D | expect_output.txt | 15 Float32Array test success !!!
|
| D | typedarrayat.js | 24 Float32Array,
|
12