Home
last modified time | relevance | path

Searched refs:autoAllocateChunkSize (Results 1 – 14 of 14) sorted by relevance

/third_party/node/test/fixtures/wpt/streams/readable-byte-streams/
Drespond-after-enqueue.any.js9 autoAllocateChunkSize: 10, property
25 autoAllocateChunkSize: 10, property
42 autoAllocateChunkSize: 10, property
Dgeneral.any.js343 autoAllocateChunkSize: 16 property
427 autoAllocateChunkSize: 16 property
2155 autoAllocateChunkSize: 128, property
2173 assert_throws_js(TypeError, () => new ReadableStream({ autoAllocateChunkSize: 0, type: 'bytes' }), property
2354 autoAllocateChunkSize: 10, property
2647 autoAllocateChunkSize: 4, property
2683 autoAllocateChunkSize: 4, property
2718 autoAllocateChunkSize: 4, property
2754 autoAllocateChunkSize: 4, property
2884 autoAllocateChunkSize: 10, property
Dbad-buffers-and-views.any.js262 autoAllocateChunkSize: 10 property
/third_party/node/lib/internal/webstreams/
Dreadablestream.js3084 autoAllocateChunkSize,
3086 if (autoAllocateChunkSize !== undefined) {
3088 const buffer = new ArrayBuffer(autoAllocateChunkSize);
3093 bufferByteLength: autoAllocateChunkSize,
3095 byteLength: autoAllocateChunkSize,
3118 autoAllocateChunkSize) { argument
3120 if (autoAllocateChunkSize !== undefined) {
3121 assert(NumberIsInteger(autoAllocateChunkSize));
3122 assert(autoAllocateChunkSize > 0);
3136 autoAllocateChunkSize, property
[all …]
/third_party/node/test/parallel/
Dtest-whatwg-readablebytestream.js117 get autoAllocateChunkSize() { return 1024; } getter in Source
271 autoAllocateChunkSize: 10, property
Dtest-whatwg-readablestream.js1664 autoAllocateChunkSize: 128, property
/third_party/node/test/fixtures/wpt/interfaces/
Dstreams.idl50 [EnforceRange] unsigned long long autoAllocateChunkSize;
/third_party/node/lib/internal/fs/
Dpromises.js296 autoAllocateChunkSize: 16384, property
/third_party/node/doc/api/
Dwebstreams.md126 * `autoAllocateChunkSize` {number} Used only when `type` is equal to
491 autoAllocateChunkSize = 1024;
/third_party/typescript/lib/
Dlib.webworker.d.ts671 autoAllocateChunkSize?: number; property
694 autoAllocateChunkSize?: number; property
Dlib.dom.d.ts1850 autoAllocateChunkSize?: number; property
1873 autoAllocateChunkSize?: number; property
/third_party/typescript/src/lib/
Dwebworker.generated.d.ts651 autoAllocateChunkSize?: number; property
674 autoAllocateChunkSize?: number; property
Ddom.generated.d.ts1830 autoAllocateChunkSize?: number; property
1853 autoAllocateChunkSize?: number; property
/third_party/node/doc/changelogs/
DCHANGELOG_V18.md190 …com/nodejs/node/commit/f18b287bc3)] - **doc**: add description of autoAllocateChunkSize in Readabl…