/third_party/typescript/tests/baselines/reference/ |
D | typedArraysCrossAssignability01.types | 29 let arr_Int32Array = new Int32Array(1); 30 >arr_Int32Array : Int32Array 31 >new Int32Array(1) : Int32Array 32 >Int32Array : Int32ArrayConstructor 80 >arr_Int8Array = arr_Int32Array : Int32Array 82 >arr_Int32Array : Int32Array 125 >arr_Uint8Array = arr_Int32Array : Int32Array 127 >arr_Int32Array : Int32Array 170 >arr_Int16Array = arr_Int32Array : Int32Array 172 >arr_Int32Array : Int32Array [all …]
|
D | es2022SharedMemory.types | 2 const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024); 4 >new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024) : SharedArrayBuffer 6 >Int32Array.BYTES_PER_ELEMENT * 1024 : number 7 >Int32Array.BYTES_PER_ELEMENT : number 8 >Int32Array : Int32ArrayConstructor 12 const int32 = new Int32Array(sab); 13 >int32 : Int32Array 14 >new Int32Array(sab) : Int32Array 15 >Int32Array : Int32ArrayConstructor 21 >Atomics.wait : { (typedArray: Int32Array, index: number, value: number, timeout?: number | undefin… [all …]
|
D | valueOfTypedArray.types | 39 const typedArray4: Int32Array = (new Int32Array()).valueOf(); 40 >typedArray4 : Int32Array 41 >(new Int32Array()).valueOf() : Int32Array 42 >(new Int32Array()).valueOf : () => Int32Array 43 >(new Int32Array()) : Int32Array 44 >new Int32Array() : Int32Array 45 >Int32Array : Int32ArrayConstructor 46 >valueOf : () => Int32Array
|
D | unionWithIndexSignature.types | 30 export type TypedArray = Int32Array | Uint8Array; 31 >TypedArray : Int32Array | Uint8Array 33 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 34 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array 37 return a instanceof Int32Array || a instanceof Uint8Array; 38 >a instanceof Int32Array || a instanceof Uint8Array : boolean 39 >a instanceof Int32Array : boolean 41 >Int32Array : Int32ArrayConstructor 53 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array 58 >arr : Int32Array | Uint8Array
|
D | typedArrays.js | 8 typedArrays[4] = Int32Array; 23 typedArrays[4] = new Int32Array(obj); 38 typedArrays[4] = new Int32Array(obj); 53 typedArrays[4] = Int32Array.from(obj); 68 typedArrays[4] = Int32Array.from(obj); 83 typedArrays[4] = Int32Array.of(...obj); 98 typedArrays[4] = Int32Array.of(1,2,3,4); 113 typedArrays[4] = Int32Array.from(obj, mapFn); 128 typedArrays[4] = Int32Array.from(obj, mapFn); 143 typedArrays[4] = Int32Array.from(obj, mapFn, thisArg); [all …]
|
D | typedArraysSubarray.types | 160 var arr = new Int32Array(10); 161 >arr : Int32Array 162 >new Int32Array(10) : Int32Array 163 >Int32Array : Int32ArrayConstructor 167 >arr.subarray() : Int32Array 168 >arr.subarray : (begin?: number, end?: number) => Int32Array 169 >arr : Int32Array 170 >subarray : (begin?: number, end?: number) => Int32Array 173 >arr.subarray(0) : Int32Array 174 >arr.subarray : (begin?: number, end?: number) => Int32Array [all …]
|
D | typedArrays.types | 37 typedArrays[4] = Int32Array; 38 >typedArrays[4] = Int32Array : Int32ArrayConstructor 42 >Int32Array : Int32ArrayConstructor 120 typedArrays[4] = new Int32Array(obj); 121 >typedArrays[4] = new Int32Array(obj) : Int32Array 125 >new Int32Array(obj) : Int32Array 126 >Int32Array : Int32ArrayConstructor 213 typedArrays[4] = new Int32Array(obj); 214 >typedArrays[4] = new Int32Array(obj) : Int32Array 218 >new Int32Array(obj) : Int32Array [all …]
|
D | unionWithIndexSignature.symbols | 38 export type TypedArray = Int32Array | Uint8Array; 40 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 43 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 47 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 50 return a instanceof Int32Array || a instanceof Uint8Array; 52 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
D | typedArraysCrossAssignability01.errors.txt | 10 tests/cases/compiler/typedArraysCrossAssignability01.ts(16,5): error TS2322: Type 'Int32Array' is n… 12 Type '"Int32Array"' is not assignable to type '"Int8Array"'. 34 tests/cases/compiler/typedArraysCrossAssignability01.ts(26,5): error TS2322: Type 'Int32Array' is n… 36 Type '"Int32Array"' is not assignable to type '"Uint8Array"'. 58 tests/cases/compiler/typedArraysCrossAssignability01.ts(36,5): error TS2322: Type 'Int32Array' is n… 60 Type '"Int32Array"' is not assignable to type '"Int16Array"'. 82 tests/cases/compiler/typedArraysCrossAssignability01.ts(46,5): error TS2322: Type 'Int32Array' is n… 84 Type '"Int32Array"' is not assignable to type '"Uint16Array"'. 97 …ossAssignability01.ts(52,5): error TS2322: Type 'Int8Array' is not assignable to type 'Int32Array'. 99 Type '"Int8Array"' is not assignable to type '"Int32Array"'. [all …]
|
D | typedArrays-es6.types | 35 const int32Array = new Int32Array(1); 36 >int32Array : Int32Array 37 >new Int32Array(1) : Int32Array 38 >Int32Array : Int32ArrayConstructor 44 >int32Array : Int32Array
|
D | typedArrays-es5.types | 35 const int32Array = new Int32Array(1); 36 >int32Array : Int32Array 37 >new Int32Array(1) : Int32Array 38 >Int32Array : Int32ArrayConstructor 44 >int32Array : Int32Array
|
D | indexAt(target=es2021).types | 57 new Int32Array().at(0); 58 >new Int32Array().at(0) : any 59 >new Int32Array().at : any 60 >new Int32Array() : Int32Array 61 >Int32Array : Int32ArrayConstructor
|
D | es2022SharedMemory.symbols | 2 const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024); 5 >Int32Array.BYTES_PER_ELEMENT : Symbol(Int32ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es5.d.ts, … 6 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.e… 9 const int32 = new Int32Array(sab); 11 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.e…
|
D | unionWithIndexSignature.js | 17 export type TypedArray = Int32Array | Uint8Array; 19 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 20 return a instanceof Int32Array || a instanceof Uint8Array; 39 return a instanceof Int32Array || a instanceof Uint8Array;
|
D | indexAt(target=esnext).types | 57 new Int32Array().at(0); 58 >new Int32Array().at(0) : number 59 >new Int32Array().at : (index: number) => number 60 >new Int32Array() : Int32Array 61 >Int32Array : Int32ArrayConstructor
|
D | indexAt(target=es2022).types | 57 new Int32Array().at(0); 58 >new Int32Array().at(0) : number 59 >new Int32Array().at : (index: number) => number 60 >new Int32Array() : Int32Array 61 >Int32Array : Int32ArrayConstructor
|
/third_party/typescript/lib/ |
D | lib.es2017.sharedmemory.d.ts | 54 …add(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 61 …and(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 68 …compareExchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint3… 75 …exchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array,… 88 …load(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, ind… 95 …or(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index… 101 …store(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, in… 108 …sub(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 116 …wait(typedArray: Int32Array, index: number, value: number, timeout?: number): "ok" | "not-equal" |… 125 notify(typedArray: Int32Array, index: number, count?: number): number; [all …]
|
D | lib.webworker.iterable.d.ts | 112 …: Int32Array | Iterable<GLint>, firstsOffset: GLuint, countsList: Int32Array | Iterable<GLsizei>, … 113 …wArraysWEBGL(mode: GLenum, firstsList: Int32Array | Iterable<GLint>, firstsOffset: GLuint, countsL… 114 …Int32Array | Iterable<GLsizei>, countsOffset: GLuint, type: GLenum, offsetsList: Int32Array | Iter… 115 …EBGL(mode: GLenum, countsList: Int32Array | Iterable<GLsizei>, countsOffset: GLuint, type: GLenum,…
|
/third_party/typescript/src/lib/ |
D | es2017.sharedmemory.d.ts | 34 …add(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 41 …and(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 48 …compareExchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint3… 55 …exchange(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array,… 68 …load(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, ind… 75 …or(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, index… 81 …store(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, in… 88 …sub(typedArray: Int8Array | Uint8Array | Int16Array | Uint16Array | Int32Array | Uint32Array, inde… 96 …wait(typedArray: Int32Array, index: number, value: number, timeout?: number): "ok" | "not-equal" |… 105 notify(typedArray: Int32Array, index: number, count?: number): number; [all …]
|
D | webworker.iterable.generated.d.ts | 92 …: Int32Array | Iterable<GLint>, firstsOffset: GLuint, countsList: Int32Array | Iterable<GLsizei>, … 93 …wArraysWEBGL(mode: GLenum, firstsList: Int32Array | Iterable<GLint>, firstsOffset: GLuint, countsL… 94 …Int32Array | Iterable<GLsizei>, countsOffset: GLuint, type: GLenum, offsetsList: Int32Array | Iter… 95 …EBGL(mode: GLenum, countsList: Int32Array | Iterable<GLsizei>, countsOffset: GLuint, type: GLenum,…
|
/third_party/typescript/tests/cases/compiler/ |
D | typedArrays.ts | 9 typedArrays[4] = Int32Array; 24 typedArrays[4] = new Int32Array(obj); 39 typedArrays[4] = new Int32Array(obj); 54 typedArrays[4] = Int32Array.from(obj); 69 typedArrays[4] = Int32Array.from(obj); 84 typedArrays[4] = Int32Array.of(...obj); 99 typedArrays[4] = Int32Array.of(1,2,3,4); 114 typedArrays[4] = Int32Array.from(obj, mapFn); 129 typedArrays[4] = Int32Array.from(obj, mapFn); 144 typedArrays[4] = Int32Array.from(obj, mapFn, thisArg); [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | typedArray-set-with-typedArray.js | 16 var a = new Int32Array([1, 2, 3, 4, 5]); 17 var b = new Int32Array(5); 35 b.set(new Int32Array([99, 98]), 2); 38 b.set(new Int32Array([99, 98, 97]), 2); 42 b.set(new Int32Array([99, 98, 97, 96]), 2); 84 var c = new Int32Array([0xFFFFFFFF]);
|
/third_party/typescript/tests/cases/test262-harness/ |
D | helpers.d.ts | 352 …rray, typeof Uint8Array, typeof Int16Array, typeof Uint16Array, typeof Int32Array, typeof Uint32Ar… 353 …yInstances(obj: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Fl… 354 …rray, typeof Uint8Array, typeof Int16Array, typeof Uint16Array, typeof Int32Array, typeof Uint32Ar… 355 …ypedArrays(obj: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Ui… 358 …ArraysFrom(obj: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Fl… 359 …edArraysOf(obj: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Fl… 360 …bj: any, mapFn: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Fl… 361 …: any, thisArg: any): [Int8Array, Uint8Array, Int16Array, Uint16Array, Int32Array, Uint32Array, Fl… 363 declare function CreateSignedTypedArrayInstances(obj: any): [Int8Array, Int16Array, Int32Array, Flo…
|
/third_party/skia/third_party/externals/brotli/js/ |
D | decode.min.js | 1 …Int32Array(3091),e.j[0]=7,e.k=3;var i=n(2147483644,3,120);e.l=new Int8Array(i),e.m=new Int32Array(…
|
D | decode.js | 25 …var MAX_HUFFMAN_TABLE_SIZE = Int32Array.from([256, 402, 436, 468, 500, 534, 566, 598, 630, 662, 69… 26 …var CODE_LENGTH_CODE_ORDER = Int32Array.from([1, 2, 3, 4, 0, 5, 17, 6, 16, 7, 8, 9, 10, 11, 12, 13… 27 …var DISTANCE_SHORT_CODE_INDEX_OFFSET = Int32Array.from([0, 3, 2, 1, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, … 28 …var DISTANCE_SHORT_CODE_VALUE_OFFSET = Int32Array.from([0, 0, 0, 0, -1, 1, -2, 2, -3, 3, -1, 1, -2… 29 …var FIXED_TABLE = Int32Array.from([0x020000, 0x020004, 0x020003, 0x030002, 0x020000, 0x020004, 0x0… 30 …var DICTIONARY_OFFSETS_BY_LENGTH = Int32Array.from([0, 0, 0, 0, 0, 4096, 9216, 21504, 35840, 44032… 31 …var DICTIONARY_SIZE_BITS_BY_LENGTH = Int32Array.from([0, 0, 0, 0, 10, 10, 11, 11, 10, 10, 10, 10, … 32 …var BLOCK_LENGTH_OFFSET = Int32Array.from([1, 5, 9, 13, 17, 25, 33, 41, 49, 65, 81, 97, 113, 145, … 33 …var BLOCK_LENGTH_N_BITS = Int32Array.from([2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 7… 178 s.blockTrees = new Int32Array(3091); [all …]
|