Home
last modified time | relevance | path

Searched refs:BigInt64Array (Results 1 – 25 of 68) sorted by relevance

123

/third_party/typescript/tests/baselines/reference/
Dbigint64ArraySubarray.types5 var arr = new BigInt64Array(10);
6 >arr : BigInt64Array
7 >new BigInt64Array(10) : BigInt64Array
8 >BigInt64Array : BigInt64ArrayConstructor
12 >arr.subarray() : BigInt64Array
13 >arr.subarray : (begin?: number, end?: number) => BigInt64Array
14 >arr : BigInt64Array
15 >subarray : (begin?: number, end?: number) => BigInt64Array
18 >arr.subarray(0) : BigInt64Array
19 >arr.subarray : (begin?: number, end?: number) => BigInt64Array
[all …]
DbigintWithLib.types108 // Test BigInt64Array
109 let bigIntArray: BigInt64Array = new BigInt64Array();
110 >bigIntArray : BigInt64Array
111 >new BigInt64Array() : BigInt64Array
112 >BigInt64Array : BigInt64ArrayConstructor
114 bigIntArray = new BigInt64Array(10);
115 >bigIntArray = new BigInt64Array(10) : BigInt64Array
116 >bigIntArray : BigInt64Array
117 >new BigInt64Array(10) : BigInt64Array
118 >BigInt64Array : BigInt64ArrayConstructor
[all …]
DbigintWithoutLib.types110 // Test BigInt64Array
111 let bigIntArray: BigInt64Array = new BigInt64Array();
112 >bigIntArray : BigInt64Array
113 >new BigInt64Array() : any
114 >BigInt64Array : any
116 bigIntArray = new BigInt64Array(10);
117 >bigIntArray = new BigInt64Array(10) : any
118 >bigIntArray : BigInt64Array
119 >new BigInt64Array(10) : any
120 >BigInt64Array : any
[all …]
DbigintWithoutLib.js19 let bigIntArray: BigInt64Array = new BigInt64Array();
20 bigIntArray = new BigInt64Array(10);
21 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
22 bigIntArray = new BigInt64Array([1, 2, 3]);
23 bigIntArray = new BigInt64Array(new ArrayBuffer(80));
24 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
25 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
76 var bigIntArray = new BigInt64Array();
77 bigIntArray = new BigInt64Array(10);
78 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
[all …]
DbigintWithLib.js17 let bigIntArray: BigInt64Array = new BigInt64Array();
18 bigIntArray = new BigInt64Array(10);
19 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
20 bigIntArray = new BigInt64Array([1, 2, 3]); // should error
21 bigIntArray = new BigInt64Array(new ArrayBuffer(80));
22 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
23 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
79 let bigIntArray = new BigInt64Array();
80 bigIntArray = new BigInt64Array(10);
81 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
[all …]
DvalueOfTypedArray.types75 const typedArray8: BigInt64Array = (new BigInt64Array()).valueOf();
76 >typedArray8 : BigInt64Array
77 >(new BigInt64Array()).valueOf() : BigInt64Array
78 >(new BigInt64Array()).valueOf : () => BigInt64Array
79 >(new BigInt64Array()) : BigInt64Array
80 >new BigInt64Array() : BigInt64Array
81 >BigInt64Array : BigInt64ArrayConstructor
82 >valueOf : () => BigInt64Array
Dbigint64ArraySubarray.symbols5 var arr = new BigInt64Array(10);
7 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
10 >arr.subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
12 >subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
15 >arr.subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
17 >subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
20 >arr.subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
22 >subarray : Symbol(BigInt64Array.subarray, Decl(lib.es2020.bigint.d.ts, --, --))
DbigintWithLib.symbols71 // Test BigInt64Array
72 let bigIntArray: BigInt64Array = new BigInt64Array();
74 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
75 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
77 bigIntArray = new BigInt64Array(10);
79 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
81 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
83 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
85 bigIntArray = new BigInt64Array([1, 2, 3]); // should error
87 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
[all …]
DbigintWithLib.errors.txt3 Overload 1 of 3, '(length?: number): BigInt64Array', gave the following error.
5 Overload 2 of 3, '(array: Iterable<bigint>): BigInt64Array', gave the following error.
12 …Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigInt64Array',…
45 // Test BigInt64Array
46 let bigIntArray: BigInt64Array = new BigInt64Array();
47 bigIntArray = new BigInt64Array(10);
48 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
49 bigIntArray = new BigInt64Array([1, 2, 3]); // should error
52 !!! error TS2769: Overload 1 of 3, '(length?: number): BigInt64Array', gave the following error.
54 !!! error TS2769: Overload 2 of 3, '(array: Iterable<bigint>): BigInt64Array', gave the following…
[all …]
DindexAt(target=es2021).types89 new BigInt64Array().at(0);
90 >new BigInt64Array().at(0) : any
91 >new BigInt64Array().at : any
92 >new BigInt64Array() : BigInt64Array
93 >BigInt64Array : BigInt64ArrayConstructor
DindexAt(target=esnext).types89 new BigInt64Array().at(0);
90 >new BigInt64Array().at(0) : bigint
91 >new BigInt64Array().at : (index: number) => bigint
92 >new BigInt64Array() : BigInt64Array
93 >BigInt64Array : BigInt64ArrayConstructor
DindexAt(target=es2022).types89 new BigInt64Array().at(0);
90 >new BigInt64Array().at(0) : bigint
91 >new BigInt64Array().at : (index: number) => bigint
92 >new BigInt64Array() : BigInt64Array
93 >BigInt64Array : BigInt64ArrayConstructor
DbigintWithoutLib.errors.txt13 tests/cases/compiler/bigintWithoutLib.ts(18,18): error TS2583: Cannot find name 'BigInt64Array'. Do…
14 tests/cases/compiler/bigintWithoutLib.ts(18,38): error TS2583: Cannot find name 'BigInt64Array'. Do…
15 tests/cases/compiler/bigintWithoutLib.ts(19,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
16 tests/cases/compiler/bigintWithoutLib.ts(20,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
20 tests/cases/compiler/bigintWithoutLib.ts(21,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
21 tests/cases/compiler/bigintWithoutLib.ts(22,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
22 tests/cases/compiler/bigintWithoutLib.ts(23,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
23 tests/cases/compiler/bigintWithoutLib.ts(24,19): error TS2583: Cannot find name 'BigInt64Array'. Do…
95 // Test BigInt64Array
96 let bigIntArray: BigInt64Array = new BigInt64Array();
[all …]
DbigintWithoutLib.symbols63 // Test BigInt64Array
64 let bigIntArray: BigInt64Array = new BigInt64Array();
66 >BigInt64Array : Symbol(BigInt64Array)
68 bigIntArray = new BigInt64Array(10);
71 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
74 bigIntArray = new BigInt64Array([1, 2, 3]);
77 bigIntArray = new BigInt64Array(new ArrayBuffer(80));
81 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
85 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
DvalueOfTypedArray.js11 const typedArray8: BigInt64Array = (new BigInt64Array()).valueOf();
25 const typedArray8 = (new BigInt64Array()).valueOf();
DvalueOfTypedArray.symbols59 const typedArray8: BigInt64Array = (new BigInt64Array()).valueOf();
61 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
62 >(new BigInt64Array()).valueOf : Symbol(BigInt64Array.valueOf, Decl(lib.es2020.bigint.d.ts, --, --))
63 >BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint…
64 >valueOf : Symbol(BigInt64Array.valueOf, Decl(lib.es2020.bigint.d.ts, --, --))
Des2022SharedMemory.types21 …: number | undefined): "ok" | "not-equal" | "timed-out"; (typedArray: BigInt64Array, index: number…
23 …: number | undefined): "ok" | "not-equal" | "timed-out"; (typedArray: BigInt64Array, index: number…
32 >Atomics.waitAsync : (typedArray: Int32Array | BigInt64Array, index: number, value: bigint, timeout…
34 >waitAsync : (typedArray: Int32Array | BigInt64Array, index: number, value: bigint, timeout?: numbe…
/third_party/typescript/lib/
Dlib.es2020.bigint.d.ts151 interface BigInt64Array { interface
186 …every(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): …
205 …(predicate: (value: bigint, index: number, array: BigInt64Array) => any, thisArg?: any): BigInt64A…
216 …find(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): b…
227 …findIndex(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: an…
236 …forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array) => void, thisArg?: any): …
282 …allbackfn: (value: bigint, index: number, array: BigInt64Array) => bigint, thisArg?: any): BigInt6…
294 …iousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): b…
306 …(previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initial…
318 …iousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): b…
[all …]
Dlib.es2020.sharedmemory.d.ts27 add(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
34 and(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
41 …compareExchange(typedArray: BigInt64Array | BigUint64Array, index: number, expectedValue: bigint, …
48 exchange(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
54 load(typedArray: BigInt64Array | BigUint64Array, index: number): bigint;
61 or(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
67 store(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
74 sub(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
82 …wait(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): "ok" | "not-equal…
91 notify(typedArray: BigInt64Array, index: number, count?: number): number;
[all …]
/third_party/typescript/src/lib/
Des2020.bigint.d.ts131 interface BigInt64Array { interface
166 …every(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): …
185 …(predicate: (value: bigint, index: number, array: BigInt64Array) => any, thisArg?: any): BigInt64A…
196 …find(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: any): b…
207 …findIndex(predicate: (value: bigint, index: number, array: BigInt64Array) => boolean, thisArg?: an…
216 …forEach(callbackfn: (value: bigint, index: number, array: BigInt64Array) => void, thisArg?: any): …
262 …allbackfn: (value: bigint, index: number, array: BigInt64Array) => bigint, thisArg?: any): BigInt6…
274 …iousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): b…
286 …(previousValue: U, currentValue: bigint, currentIndex: number, array: BigInt64Array) => U, initial…
298 …iousValue: bigint, currentValue: bigint, currentIndex: number, array: BigInt64Array) => bigint): b…
[all …]
Des2020.sharedmemory.d.ts7 add(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
14 and(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
21 …compareExchange(typedArray: BigInt64Array | BigUint64Array, index: number, expectedValue: bigint, …
28 exchange(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
34 load(typedArray: BigInt64Array | BigUint64Array, index: number): bigint;
41 or(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
47 store(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
54 sub(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
62 …wait(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): "ok" | "not-equal…
71 notify(typedArray: BigInt64Array, index: number, count?: number): number;
[all …]
/third_party/typescript/tests/cases/compiler/
DbigintWithoutLib.ts20 let bigIntArray: BigInt64Array = new BigInt64Array();
21 bigIntArray = new BigInt64Array(10);
22 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
23 bigIntArray = new BigInt64Array([1, 2, 3]);
24 bigIntArray = new BigInt64Array(new ArrayBuffer(80));
25 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
26 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
DbigintWithLib.ts19 let bigIntArray: BigInt64Array = new BigInt64Array();
20 bigIntArray = new BigInt64Array(10);
21 bigIntArray = new BigInt64Array([1n, 2n, 3n]);
22 bigIntArray = new BigInt64Array([1, 2, 3]); // should error
23 bigIntArray = new BigInt64Array(new ArrayBuffer(80));
24 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8);
25 bigIntArray = new BigInt64Array(new ArrayBuffer(80), 8, 3);
/third_party/node/deps/v8/include/
Dv8-typed-array.h241 class V8_EXPORT BigInt64Array : public TypedArray {
243 static Local<BigInt64Array> New(Local<ArrayBuffer> array_buffer,
245 static Local<BigInt64Array> New(Local<SharedArrayBuffer> shared_array_buffer,
247 V8_INLINE static BigInt64Array* Cast(Value* value) { in Cast()
251 return static_cast<BigInt64Array*>(value); in Cast()
255 BigInt64Array();
/third_party/node/deps/v8/tools/clusterfuzz/foozzie/
Dv8_mock_archs.js58 BigInt64Array = mock(BigInt64Array);
76 BigInt64Array,

123