/third_party/typescript/src/lib/ |
D | es2020.bigint.d.ts | 401 interface BigUint64Array { interface 436 …every(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any):… 455 …predicate: (value: bigint, index: number, array: BigUint64Array) => any, thisArg?: any): BigUint64… 466 …find(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): … 477 …findIndex(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: a… 486 …forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array) => void, thisArg?: any):… 532 …llbackfn: (value: bigint, index: number, array: BigUint64Array) => bigint, thisArg?: any): BigUint… 544 …ousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): b… 556 …previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initial… 568 …ousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): b… [all …]
|
D | es2020.sharedmemory.d.ts | 7 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; 78 xor(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
|
/third_party/typescript/lib/ |
D | lib.es2020.bigint.d.ts | 421 interface BigUint64Array { interface 456 …every(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any):… 475 …predicate: (value: bigint, index: number, array: BigUint64Array) => any, thisArg?: any): BigUint64… 486 …find(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: any): … 497 …findIndex(predicate: (value: bigint, index: number, array: BigUint64Array) => boolean, thisArg?: a… 506 …forEach(callbackfn: (value: bigint, index: number, array: BigUint64Array) => void, thisArg?: any):… 552 …llbackfn: (value: bigint, index: number, array: BigUint64Array) => bigint, thisArg?: any): BigUint… 564 …ousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): b… 576 …previousValue: U, currentValue: bigint, currentIndex: number, array: BigUint64Array) => U, initial… 588 …ousValue: bigint, currentValue: bigint, currentIndex: number, array: BigUint64Array) => bigint): b… [all …]
|
D | lib.es2020.sharedmemory.d.ts | 27 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; 98 xor(typedArray: BigInt64Array | BigUint64Array, index: number, value: bigint): bigint;
|
/third_party/typescript/tests/baselines/reference/ |
D | bigintWithLib.types | 188 // Test BigUint64Array 189 let bigUintArray: BigUint64Array = new BigUint64Array(); 190 >bigUintArray : BigUint64Array 191 >new BigUint64Array() : BigUint64Array 192 >BigUint64Array : BigUint64ArrayConstructor 194 bigUintArray = new BigUint64Array(10); 195 >bigUintArray = new BigUint64Array(10) : BigUint64Array 196 >bigUintArray : BigUint64Array 197 >new BigUint64Array(10) : BigUint64Array 198 >BigUint64Array : BigUint64ArrayConstructor [all …]
|
D | bigintWithoutLib.js | 31 let bigUintArray: BigUint64Array = new BigUint64Array(); 32 bigUintArray = new BigUint64Array(10); 33 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 34 bigUintArray = new BigUint64Array([1, 2, 3]); 35 bigUintArray = new BigUint64Array(new ArrayBuffer(80)); 36 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8); 37 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3); 87 var bigUintArray = new BigUint64Array(); 88 bigUintArray = new BigUint64Array(10); 89 bigUintArray = new BigUint64Array([1n, 2n, 3n]); [all …]
|
D | bigintWithLib.js | 29 let bigUintArray: BigUint64Array = new BigUint64Array(); 30 bigUintArray = new BigUint64Array(10); 31 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 32 bigUintArray = new BigUint64Array([1, 2, 3]); // should error 33 bigUintArray = new BigUint64Array(new ArrayBuffer(80)); 34 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8); 35 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3); 90 let bigUintArray = new BigUint64Array(); 91 bigUintArray = new BigUint64Array(10); 92 bigUintArray = new BigUint64Array([1n, 2n, 3n]); [all …]
|
D | valueOfTypedArray.types | 84 const typedArray9: BigUint64Array = (new BigUint64Array()).valueOf(); 85 >typedArray9 : BigUint64Array 86 >(new BigUint64Array()).valueOf() : BigUint64Array 87 >(new BigUint64Array()).valueOf : () => BigUint64Array 88 >(new BigUint64Array()) : BigUint64Array 89 >new BigUint64Array() : BigUint64Array 90 >BigUint64Array : BigUint64ArrayConstructor 91 >valueOf : () => BigUint64Array
|
D | bigintWithoutLib.types | 190 // Test BigUint64Array 191 let bigUintArray: BigUint64Array = new BigUint64Array(); 193 >new BigUint64Array() : any 194 >BigUint64Array : any 196 bigUintArray = new BigUint64Array(10); 197 >bigUintArray = new BigUint64Array(10) : any 199 >new BigUint64Array(10) : any 200 >BigUint64Array : any 203 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 204 >bigUintArray = new BigUint64Array([1n, 2n, 3n]) : any [all …]
|
D | bigintWithLib.errors.txt | 17 Overload 1 of 3, '(length?: number): BigUint64Array', gave the following error. 19 Overload 2 of 3, '(array: Iterable<bigint>): BigUint64Array', gave the following error. 21 …Overload 3 of 3, '(buffer: ArrayBufferLike, byteOffset?: number, length?: number): BigUint64Array'… 74 // Test BigUint64Array 75 let bigUintArray: BigUint64Array = new BigUint64Array(); 76 bigUintArray = new BigUint64Array(10); 77 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 78 bigUintArray = new BigUint64Array([1, 2, 3]); // should error 81 !!! error TS2769: Overload 1 of 3, '(length?: number): BigUint64Array', gave the following error. 83 !!! error TS2769: Overload 2 of 3, '(array: Iterable<bigint>): BigUint64Array', gave the followin… [all …]
|
D | bigintWithLib.symbols | 120 // Test BigUint64Array 121 let bigUintArray: BigUint64Array = new BigUint64Array(); 123 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 124 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 126 bigUintArray = new BigUint64Array(10); 128 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 130 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 132 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 134 bigUintArray = new BigUint64Array([1, 2, 3]); // should error 136 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… [all …]
|
D | bigintWithoutLib.errors.txt | 24 tests/cases/compiler/bigintWithoutLib.ts(30,19): error TS2583: Cannot find name 'BigUint64Array'. D… 25 tests/cases/compiler/bigintWithoutLib.ts(30,40): error TS2583: Cannot find name 'BigUint64Array'. D… 26 tests/cases/compiler/bigintWithoutLib.ts(31,20): error TS2583: Cannot find name 'BigUint64Array'. D… 27 tests/cases/compiler/bigintWithoutLib.ts(32,20): error TS2583: Cannot find name 'BigUint64Array'. D… 31 tests/cases/compiler/bigintWithoutLib.ts(33,20): error TS2583: Cannot find name 'BigUint64Array'. D… 32 tests/cases/compiler/bigintWithoutLib.ts(34,20): error TS2583: Cannot find name 'BigUint64Array'. D… 33 tests/cases/compiler/bigintWithoutLib.ts(35,20): error TS2583: Cannot find name 'BigUint64Array'. D… 34 tests/cases/compiler/bigintWithoutLib.ts(36,20): error TS2583: Cannot find name 'BigUint64Array'. D… 133 // Test BigUint64Array 134 let bigUintArray: BigUint64Array = new BigUint64Array(); [all …]
|
D | valueOfTypedArray.js | 12 const typedArray9: BigUint64Array = (new BigUint64Array()).valueOf(); 26 const typedArray9 = (new BigUint64Array()).valueOf();
|
D | valueOfTypedArray.symbols | 66 const typedArray9: BigUint64Array = (new BigUint64Array()).valueOf(); 68 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 69 >(new BigUint64Array()).valueOf : Symbol(BigUint64Array.valueOf, Decl(lib.es2020.bigint.d.ts, --, -… 70 >BigUint64Array : Symbol(BigUint64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigi… 71 >valueOf : Symbol(BigUint64Array.valueOf, Decl(lib.es2020.bigint.d.ts, --, --))
|
D | bigintWithoutLib.symbols | 100 // Test BigUint64Array 101 let bigUintArray: BigUint64Array = new BigUint64Array(); 104 bigUintArray = new BigUint64Array(10); 107 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 110 bigUintArray = new BigUint64Array([1, 2, 3]); 113 bigUintArray = new BigUint64Array(new ArrayBuffer(80)); 117 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8); 121 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);
|
/third_party/typescript/tests/cases/compiler/ |
D | bigintWithoutLib.ts | 32 let bigUintArray: BigUint64Array = new BigUint64Array(); 33 bigUintArray = new BigUint64Array(10); 34 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 35 bigUintArray = new BigUint64Array([1, 2, 3]); 36 bigUintArray = new BigUint64Array(new ArrayBuffer(80)); 37 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8); 38 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);
|
D | bigintWithLib.ts | 31 let bigUintArray: BigUint64Array = new BigUint64Array(); 32 bigUintArray = new BigUint64Array(10); 33 bigUintArray = new BigUint64Array([1n, 2n, 3n]); 34 bigUintArray = new BigUint64Array([1, 2, 3]); // should error 35 bigUintArray = new BigUint64Array(new ArrayBuffer(80)); 36 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8); 37 bigUintArray = new BigUint64Array(new ArrayBuffer(80), 8, 3);
|
D | valueOfTypedArray.ts | 13 const typedArray9: BigUint64Array = (new BigUint64Array()).valueOf();
|
/third_party/node/test/parallel/ |
D | test-util-types.js | 44 [ new BigUint64Array() ], 133 const bigUint64Array = new BigUint64Array(arrayBuffer); 147 const fakeBigUint64Array = Object.create(BigUint64Array.prototype); 181 new BigUint64Array(arrayBuffer), BigUint64Array.prototype
|
D | test-util-inspect.js | 2133 [new BigUint64Array(2), '[BigUint64Array(2): null prototype] [ 0n, 0n ]'], 2199 inspect(new BigUint64Array([0n])), 'BigUint64Array(1) [ 0n ]');
|
/third_party/node/test/js-native-api/test_typedarray/ |
D | test.js | 45 Float64Array, BigInt64Array, BigUint64Array ]; 68 BigInt64Array, BigUint64Array ];
|
/third_party/node/lib/internal/process/ |
D | per_thread.js | 10 BigUint64Array, 151 const hrBigintValues = new BigUint64Array(1);
|
/third_party/node/lib/internal/ |
D | freeze_intrinsics.js | 36 BigUint64Array, 294 BigUint64Array,
|
/third_party/node/src/ |
D | node_process_methods.cc | 36 using v8::BigUint64Array; 165 Local<ArrayBuffer> ab = args[0].As<BigUint64Array>()->Buffer(); in HrtimeBigInt()
|
D | aliased_buffer.h | 258 typedef AliasedBufferBase<uint64_t, v8::BigUint64Array> AliasedBigUint64Array;
|