Home
last modified time | relevance | path

Searched refs:dataView (Results 1 – 19 of 19) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DbigintWithoutLib.js43 const dataView = new DataView(new ArrayBuffer(80)); constant
44 dataView.setBigInt64(1, -1n);
45 dataView.setBigInt64(1, -1n, true);
46 dataView.setBigInt64(1, -1);
47 dataView.setBigUint64(2, 123n);
48 dataView.setBigUint64(2, 123n, true);
49 dataView.setBigUint64(2, 123);
50 bigintVal = dataView.getBigInt64(1);
51 bigintVal = dataView.getBigInt64(1, true);
52 bigintVal = dataView.getBigUint64(2);
[all …]
DbigintWithLib.js41 const dataView = new DataView(new ArrayBuffer(80)); constant
42 dataView.setBigInt64(1, -1n);
43 dataView.setBigInt64(1, -1n, true);
44 dataView.setBigInt64(1, -1); // should error
45 dataView.setBigUint64(2, 123n);
46 dataView.setBigUint64(2, 123n, true);
47 dataView.setBigUint64(2, 123); // should error
48 bigintVal = dataView.getBigInt64(1);
49 bigintVal = dataView.getBigInt64(1, true);
50 bigintVal = dataView.getBigUint64(2);
[all …]
DbigintWithoutLib.types273 const dataView = new DataView(new ArrayBuffer(80));
274 >dataView : DataView
281 dataView.setBigInt64(1, -1n);
282 >dataView.setBigInt64(1, -1n) : any
283 >dataView.setBigInt64 : any
284 >dataView : DataView
290 dataView.setBigInt64(1, -1n, true);
291 >dataView.setBigInt64(1, -1n, true) : any
292 >dataView.setBigInt64 : any
293 >dataView : DataView
[all …]
DbigintWithLib.types271 const dataView = new DataView(new ArrayBuffer(80));
272 >dataView : DataView
279 dataView.setBigInt64(1, -1n);
280 >dataView.setBigInt64(1, -1n) : void
281 >dataView.setBigInt64 : (byteOffset: number, value: bigint, littleEndian?: boolean) => void
282 >dataView : DataView
288 dataView.setBigInt64(1, -1n, true);
289 >dataView.setBigInt64(1, -1n, true) : void
290 >dataView.setBigInt64 : (byteOffset: number, value: bigint, littleEndian?: boolean) => void
291 >dataView : DataView
[all …]
DbigintWithoutLib.symbols137 const dataView = new DataView(new ArrayBuffer(80));
138 >dataView : Symbol(dataView, Decl(bigintWithoutLib.ts, 41, 5))
142 dataView.setBigInt64(1, -1n);
143 >dataView : Symbol(dataView, Decl(bigintWithoutLib.ts, 41, 5))
145 dataView.setBigInt64(1, -1n, true);
146 >dataView : Symbol(dataView, Decl(bigintWithoutLib.ts, 41, 5))
148 dataView.setBigInt64(1, -1);
149 >dataView : Symbol(dataView, Decl(bigintWithoutLib.ts, 41, 5))
151 dataView.setBigUint64(2, 123n);
152 >dataView : Symbol(dataView, Decl(bigintWithoutLib.ts, 41, 5))
[all …]
DbigintWithLib.symbols169 const dataView = new DataView(new ArrayBuffer(80));
170 >dataView : Symbol(dataView, Decl(bigintWithLib.ts, 39, 5))
174 dataView.setBigInt64(1, -1n);
175 >dataView.setBigInt64 : Symbol(DataView.setBigInt64, Decl(lib.es2020.bigint.d.ts, --, --))
176 >dataView : Symbol(dataView, Decl(bigintWithLib.ts, 39, 5))
179 dataView.setBigInt64(1, -1n, true);
180 >dataView.setBigInt64 : Symbol(DataView.setBigInt64, Decl(lib.es2020.bigint.d.ts, --, --))
181 >dataView : Symbol(dataView, Decl(bigintWithLib.ts, 39, 5))
184 dataView.setBigInt64(1, -1); // should error
185 >dataView.setBigInt64 : Symbol(DataView.setBigInt64, Decl(lib.es2020.bigint.d.ts, --, --))
[all …]
DbigintWithLib.errors.txt98 const dataView = new DataView(new ArrayBuffer(80));
99 dataView.setBigInt64(1, -1n);
100 dataView.setBigInt64(1, -1n, true);
101 dataView.setBigInt64(1, -1); // should error
104 dataView.setBigUint64(2, 123n);
105 dataView.setBigUint64(2, 123n, true);
106 dataView.setBigUint64(2, 123); // should error
109 bigintVal = dataView.getBigInt64(1);
110 bigintVal = dataView.getBigInt64(1, true);
111 bigintVal = dataView.getBigUint64(2);
[all …]
DbigintWithoutLib.errors.txt168 const dataView = new DataView(new ArrayBuffer(80));
169 dataView.setBigInt64(1, -1n);
174 dataView.setBigInt64(1, -1n, true);
179 dataView.setBigInt64(1, -1);
182 dataView.setBigUint64(2, 123n);
187 dataView.setBigUint64(2, 123n, true);
192 dataView.setBigUint64(2, 123);
195 bigintVal = dataView.getBigInt64(1);
198 bigintVal = dataView.getBigInt64(1, true);
201 bigintVal = dataView.getBigUint64(2);
[all …]
/third_party/typescript/tests/cases/compiler/
DbigintWithoutLib.ts44 const dataView = new DataView(new ArrayBuffer(80)); constant
45 dataView.setBigInt64(1, -1n);
46 dataView.setBigInt64(1, -1n, true);
47 dataView.setBigInt64(1, -1);
48 dataView.setBigUint64(2, 123n);
49 dataView.setBigUint64(2, 123n, true);
50 dataView.setBigUint64(2, 123);
51 bigintVal = dataView.getBigInt64(1);
52 bigintVal = dataView.getBigInt64(1, true);
53 bigintVal = dataView.getBigUint64(2);
[all …]
DbigintWithLib.ts43 const dataView = new DataView(new ArrayBuffer(80)); constant
44 dataView.setBigInt64(1, -1n);
45 dataView.setBigInt64(1, -1n, true);
46 dataView.setBigInt64(1, -1); // should error
47 dataView.setBigUint64(2, 123n);
48 dataView.setBigUint64(2, 123n, true);
49 dataView.setBigUint64(2, 123); // should error
50 bigintVal = dataView.getBigInt64(1);
51 bigintVal = dataView.getBigInt64(1, true);
52 bigintVal = dataView.getBigUint64(2);
[all …]
/third_party/jerryscript/tests/jerry/es2015/
Dregression-test-issue-2854.js16 var dataView = new DataView(buffer, 0, undefined) variable
18 assert(dataView.byteLength === 0);
Dregression-test-issue-2848.js16 var dataView = new DataView(arrayBuffer); variable
17 assert (dataView.buffer === arrayBuffer);
/third_party/node/benchmark/util/
Dtype-check.js6 const dataView = new DataView(arrayBuffer); constant
12 'true': dataView,
/third_party/flutter/skia/tools/
DSkSharingProc.cpp44 sk_sp<SkData> dataView = SkData::MakeWithCopy(data, length); in deserializeImage() local
45 const sk_sp<SkImage> image = SkImage::MakeFromEncoded(std::move(dataView)); in deserializeImage()
/third_party/skia/tools/
DSkSharingProc.cpp79 sk_sp<SkData> dataView = SkData::MakeWithCopy(data, length); in deserializeImage() local
80 const sk_sp<SkImage> image = SkImage::MakeFromEncoded(std::move(dataView)); in deserializeImage()
/third_party/node/deps/npm/node_modules/lodash.clonedeep/
Dindex.js1015 function cloneDataView(dataView, isDeep) { argument
1016 var buffer = isDeep ? cloneArrayBuffer(dataView.buffer) : dataView.buffer;
1017 return new dataView.constructor(buffer, dataView.byteOffset, dataView.byteLength);
/third_party/node/test/parallel/
Dtest-util-types.js122 const dataView = new DataView(arrayBuffer); constant
186 dataView, fakeDataView, stealthyDataView,
203 dataView, stealthyDataView,
/third_party/skia/src/gpu/
DGrDirectContextPriv.cpp262 auto dataView = std::get<0>(GrMakeUncachedBitmapProxyView(dContext, bitmap)); in test_for_preserving_PM_conversions() local
263 if (!dataView) { in test_for_preserving_PM_conversions()
279 auto fp1 = make_unpremul_effect(GrTextureEffect::Make(std::move(dataView), bitmap.alphaType())); in test_for_preserving_PM_conversions()
/third_party/protobuf/js/experimental/runtime/kernel/
Dbuffer_decoder.js69 constructor(dataView, startIndex, length) { argument
71 this.dataView_ = dataView;