/third_party/node/test/fixtures/wpt/encoding/streams/ |
D | decode-attributes.any.js | 19 const stream = new TextDecoderStream(label); 26 const stream = new TextDecoderStream('utf-8', { fatal: falseValue }); 31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue }); 38 const stream = new TextDecoderStream('utf-8', { fatal: trueValue }); 43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue }); 49 assert_throws_js(RangeError, () => new TextDecoderStream(''), 54 assert_throws_js(TypeError, () => new TextDecoderStream({ 61 () => new TextDecoderStream('utf-8', { 68 () => new TextDecoderStream('utf-8', {
|
D | decode-utf8.any.js | 19 const output = input.pipeThrough(new TextDecoderStream()); 27 const output = input.pipeThrough(new TextDecoderStream()); 34 const output = input.pipeThrough(new TextDecoderStream()); 42 const output = input.pipeThrough(new TextDecoderStream()); 52 const output = input.pipeThrough(new TextDecoderStream()); 64 const output = input.pipeThrough(new TextDecoderStream()); 73 const output = input.pipeThrough(new TextDecoderStream());
|
D | decode-split-character.any.js | 15 const output = input.pipeThrough(new TextDecoderStream()); 29 const output = input.pipeThrough(new TextDecoderStream()); 43 const output = input.pipeThrough(new TextDecoderStream());
|
D | decode-non-utf8.any.js | 44 const stream = new TextDecoderStream(encoding.name); 58 const stream = new TextDecoderStream(encoding.name); 71 const stream = new TextDecoderStream(encoding.name, {fatal: true});
|
D | decode-incomplete-input.any.js | 11 const output = input.pipeThrough(new TextDecoderStream()); 19 const output = input.pipeThrough(new TextDecoderStream(
|
D | readable-writable-properties.any.js | 17 const td = new TextDecoderStream();
|
D | decode-bad-chunks.any.js | 30 const tds = new TextDecoderStream();
|
D | decode-ignore-bom.any.js | 19 new TextDecoderStream(encoding, {ignoreBOM})));
|
D | invalid-realm.window.js | 12 const stream = new iframe.contentWindow.TextDecoderStream();
|
D | encode-bad-chunks.any.js | 58 .pipeThrough(new TextDecoderStream());
|
/third_party/node/test/parallel/ |
D | test-whatwg-webstreams-encoding.js | 9 TextDecoderStream, 16 assert.throws(() => new TextDecoderStream(i), { 22 assert.throws(() => new TextDecoderStream(undefined, i), { 28 const tds = new TextDecoderStream(); 50 () => Reflect.get(TextDecoderStream.prototype, 'encoding', {}), { 54 () => Reflect.get(TextDecoderStream.prototype, 'fatal', {}), { 58 () => Reflect.get(TextDecoderStream.prototype, 'ignoreBOM', {}), { 62 () => Reflect.get(TextDecoderStream.prototype, 'readable', {}), { 66 () => Reflect.get(TextDecoderStream.prototype, 'writable', {}), {
|
D | test-webstream-encoding-inspect.js | 5 const { TextEncoderStream, TextDecoderStream } = require('stream/web'); 22 const textDecoderStream = new TextDecoderStream();
|
D | test-global-webstreams.js | 22 assert.strictEqual(TextDecoderStream, webstreams.TextDecoderStream);
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | encoding.idl | 48 interface TextDecoderStream { 51 TextDecoderStream includes TextDecoderCommon; 52 TextDecoderStream includes GenericTransformStream;
|
/third_party/node/lib/stream/ |
D | web.js | 30 TextDecoderStream, 53 TextDecoderStream, property
|
/third_party/node/lib/internal/webstreams/ |
D | encoding.js | 141 class TextDecoderStream { class 236 ObjectDefineProperties(TextDecoderStream.prototype, { 246 TextDecoderStream, property
|
/third_party/node/lib/internal/bootstrap/ |
D | browser.js | 157 TextDecoderStream, 179 exposeInterface(globalThis, 'TextDecoderStream', TextDecoderStream);
|
/third_party/node/doc/api/ |
D | globals.md | 771 ## Class: `TextDecoderStream` 779 A browser-compatible implementation of [`TextDecoderStream`][]. 908 [`TextDecoderStream`]: webstreams.md#class-textdecoderstream
|
D | webstreams.md | 1283 ### Class: `TextDecoderStream` 1293 #### `new TextDecoderStream([encoding[, options]])` argument 1303 * `ignoreBOM` {boolean} When `true`, the `TextDecoderStream` will include the 1308 Creates a new `TextDecoderStream` instance. 1318 The encoding supported by the `TextDecoderStream` instance.
|
/third_party/node/deps/v8/tools/js/ |
D | web-api-helper.mjs | 141 const decoder = globalThis.TextDecoderStream;
|
/third_party/typescript/tests/baselines/reference/ |
D | globalThisBlockscopedProperties.types | 67 …tList" | "SubmitEvent" | "SubtleCrypto" | "Text" | "TextDecoder" | "TextDecoderStream" | "TextEnco…
|
/third_party/node/tools/doc/ |
D | type-parser.mjs | 263 'TextDecoderStream': property
|
/third_party/node/test/common/ |
D | index.js | 348 global.TextDecoderStream,
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 3282 interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon { interface 3287 declare var TextDecoderStream: { variable 3288 prototype: TextDecoderStream; 3289 new(label?: string, options?: TextDecoderOptions): TextDecoderStream;
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 3262 interface TextDecoderStream extends GenericTransformStream, TextDecoderCommon { interface 3267 declare var TextDecoderStream: { variable 3268 prototype: TextDecoderStream; 3269 new(label?: string, options?: TextDecoderOptions): TextDecoderStream;
|