/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 | 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; 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 : T & (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 | 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 | 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 | 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 | valueOfTypedArray.js | 7 const typedArray4: Int32Array = (new Int32Array()).valueOf(); 21 const typedArray4 = (new Int32Array()).valueOf();
|
D | valueOfTypedArray.symbols | 31 const typedArray4: Int32Array = (new Int32Array()).valueOf(); 33 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.e… 34 >(new Int32Array()).valueOf : Symbol(Int32Array.valueOf, Decl(lib.es5.d.ts, --, --)) 35 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.e… 36 >valueOf : Symbol(Int32Array.valueOf, Decl(lib.es5.d.ts, --, --))
|
D | typedArraysSubarray.symbols | 120 var arr = new Int32Array(10); 122 >Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --)) 125 >arr.subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --)) 127 >subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --)) 130 >arr.subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --)) 132 >subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --)) 135 >arr.subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --)) 137 >subarray : Symbol(Int32Array.subarray, Decl(lib.es5.d.ts, --, --))
|
/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 | es5.d.ts | 3145 interface Int32Array { interface 3185 …every(predicate: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boo… 3204 …ter(predicate: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Arra… 3215 …find(predicate: (value: number, index: number, obj: Int32Array) => boolean, thisArg?: any): number… 3226 …findIndex(predicate: (value: number, index: number, obj: Int32Array) => boolean, thisArg?: any): n… 3235 …forEach(callbackfn: (value: number, index: number, array: Int32Array) => void, thisArg?: any): voi… 3273 …p(callbackfn: (value: number, index: number, array: Int32Array) => number, thisArg?: any): Int32Ar… 3285 …viousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number): num… 3286 …viousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, init… 3298 … (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialVa… [all …]
|
/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.es5.d.ts | 3165 interface Int32Array { interface 3205 …every(predicate: (value: number, index: number, array: Int32Array) => unknown, thisArg?: any): boo… 3224 …ter(predicate: (value: number, index: number, array: Int32Array) => any, thisArg?: any): Int32Arra… 3235 …find(predicate: (value: number, index: number, obj: Int32Array) => boolean, thisArg?: any): number… 3246 …findIndex(predicate: (value: number, index: number, obj: Int32Array) => boolean, thisArg?: any): n… 3255 …forEach(callbackfn: (value: number, index: number, array: Int32Array) => void, thisArg?: any): voi… 3293 …p(callbackfn: (value: number, index: number, array: Int32Array) => number, thisArg?: any): Int32Ar… 3305 …viousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number): num… 3306 …viousValue: number, currentValue: number, currentIndex: number, array: Int32Array) => number, init… 3318 … (previousValue: U, currentValue: number, currentIndex: number, array: Int32Array) => U, initialVa… [all …]
|
/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 …]
|
D | unionWithIndexSignature.ts | 18 export type TypedArray = Int32Array | Uint8Array; 20 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 21 return a instanceof Int32Array || a instanceof Uint8Array;
|
/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]);
|
D | typedArray-subarray.js | 16 var a = new Int32Array([1, 2, 3, 4, 5]); 34 var tmp = new Int32Array(ab); 36 var c = new Int32Array(ab, 4, 5);
|
D | typedarray-prototype-tolocalestring.js | 21 new Int32Array([0, 1, 2, 3, 4, 5]) 72 new Int32Array([]) 89 new Int32Array([10])
|
/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 …]
|
D | polyfill.js | 1 if (!Int32Array.__proto__.from) { 2 Object.defineProperty(Int32Array.__proto__, 'from', { 63 if (!Int32Array.prototype.fill) { 64 Int32Array.prototype.fill = Array.prototype.fill; class
|