Home
last modified time | relevance | path

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

12

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DreadonlyFloat32ArrayAssignableWithFloat32Array.ts21 function update(b: Readonly<Float32Array>) {
35 function add(a: Float32Array, b: Float32Array, c: Float32Array = a) {
50 function copy(a: Float32Array) {
51 AssertType(new Float32Array(a), "Float32Array");
52 AssertType(Float32Array, "Float32ArrayConstructor");
54 return new Float32Array(a);
DtypedArrays.ts68 typedArrays[6] = Float32Array;
69 AssertType(typedArrays[6] = Float32Array, "Float32ArrayConstructor");
73 AssertType(Float32Array, "Float32ArrayConstructor");
152 typedArrays[6] = new Float32Array(obj);
153 AssertType(typedArrays[6] = new Float32Array(obj), "Float32Array");
157 AssertType(new Float32Array(obj), "Float32Array");
158 AssertType(Float32Array, "Float32ArrayConstructor");
242 typedArrays[6] = new Float32Array(obj);
243 AssertType(typedArrays[6] = new Float32Array(obj), "Float32Array");
247 AssertType(new Float32Array(obj), "Float32Array");
[all …]
DtypedArrays-es6.ts21 const float32Array = new Float32Array(1);
23 AssertType(new Float32Array(1), "Float32Array");
24 AssertType(Float32Array, "Float32ArrayConstructor");
DtypedArraysSubarray.ts183 let arr = new Float32Array(10);
185 AssertType(new Float32Array(10), "Float32Array");
186 AssertType(Float32Array, "Float32ArrayConstructor");
/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/typedarraynan/
Dtypedarraynan.js33 const v20 = new Float32Array(v18);
/arkcompiler/ets_runtime/test/moduletest/array/
Darray.js123 const v3 = new Float32Array(7);
125 v3.filter(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/typedarraywith/
Dtypedarraywith.js25 Float32Array,
Dexpect_output.txt15 Float32Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarraytosorted/
Dtypedarraytosorted.js25 Float32Array,
Dexpect_output.txt15 Float32Array test success !!!
/arkcompiler/ets_runtime/test/moduletest/typedarrayat/
Dexpect_output.txt15 Float32Array test success !!!
Dtypedarrayat.js24 Float32Array,
/arkcompiler/ets_runtime/test/moduletest/typedarrayfindlast/
Dexpect_output.txt15 Float32Array test success !!!
Dtypedarrayfindlast.js25 Float32Array,
/arkcompiler/ets_runtime/test/moduletest/typearray/
Dexpect_output.txt15 Float32Array test success !!!
Dtypearray.js24 Float32Array,
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi_helper.h54 V(Float32Array) \
/arkcompiler/toolchain/tooling/test/testcases/js/
Dvariable_second.js80 var typedarray7 = new Float32Array();
/arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/
DX2DFast.js34 this.vertexFloat32 = new Float32Array(this.vertexArray);
/arkcompiler/ets_frontend/ts2panda/src/base/
DtypeSystem.ts78 Float32Array, enumerator
/arkcompiler/ets_runtime/ecmascript/
Dglobal_env_constants.h249 …V(JSTaggedValue, Float32ArrayString, FLOAT32_ARRAY_STRING_INDEX, Float32Array) …

12