Home
last modified time | relevance | path

Searched refs:decodeStrings (Results 1 – 25 of 29) sorted by relevance

12

/third_party/node/test/parallel/
Dtest-stream-writable-change-default-encoding.js43 }, { decodeStrings: false }); property
51 }, { decodeStrings: false }); property
61 { decodeStrings: false }); property
74 }, { decodeStrings: false }); property
Dtest-stream-writable-decoded-encoding.js45 }, { decodeStrings: true }); property
55 }, { decodeStrings: false }); property
Dtest-repl-colors.js11 const inout = new Duplex({ decodeStrings: false }); property
Dtest-stream-writable-write-error.js66 decodeStrings: false, property
Dtest-console-tty-colors.js26 decodeStrings: false property
Dtest-http2-createwritereq.js51 assert.strictEqual(req._writableState.decodeStrings, false);
Dtest-stream2-push.js78 decodeStrings: false property
Dtest-stream-writev.js61 const w = new stream.Writable({ decodeStrings: decode }); property
Dtest-whatwg-webstreams-adapters-to-streamwritable.js166 decodeStrings: false, property
Dtest-stream2-writable.js159 decodeStrings: false property
Dtest-stream-pipeline.js949 decodeStrings: false, property
/third_party/node/lib/internal/webstreams/
Dadapters.js226 decodeStrings = true,
232 validateBoolean(decodeStrings, 'options.decodeStrings');
240 decodeStrings, property
272 if (typeof chunk === 'string' && decodeStrings && !objectMode) {
647 decodeStrings = true,
666 decodeStrings, property
698 if (typeof chunk === 'string' && decodeStrings && !objectMode) {
/third_party/node/lib/internal/streams/
Dlazy_transform.js29 this._writableState.decodeStrings = false;
Dwritable.js119 const noDecode = !!(options && options.decodeStrings === false);
120 this.decodeStrings = !noDecode;
305 if (state.decodeStrings !== false) {
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/
Dlazy_transform.js18 this._writableState.decodeStrings = false
Dwritable.js105 const noDecode = !!(options && options.decodeStrings === false)
106 this.decodeStrings = !noDecode
258 if (state.decodeStrings !== false) {
/third_party/node/deps/npm/node_modules/node-gyp/node_modules/readable-stream/lib/
D_stream_writable.js128 var noDecode = options.decodeStrings === false;
129 this.decodeStrings = !noDecode;
333 if (!state.objectMode && state.decodeStrings !== false && typeof chunk === 'string') {
/third_party/parse5/packages/parse5-parser-stream/lib/
Dindex.ts56 super({ decodeStrings: false });
/third_party/node/deps/npm/node_modules/iconv-lite/lib/
Dstreams.js15 options.decodeStrings = false; // We accept only strings, so we don't need to decode them.
/third_party/parse5/test/utils/
Dcommon.ts53 super({ decodeStrings: false });
/third_party/parse5/packages/parse5-sax-parser/lib/
Dindex.ts54 super({ encoding: 'utf8', decodeStrings: false });
/third_party/node/lib/internal/worker/
Dio.js362 super({ decodeStrings: false }); property
/third_party/node/lib/internal/fs/
Dstreams.js316 options.decodeStrings = true;
/third_party/node/doc/api/
Dstream.md3048 * `decodeStrings` {boolean}
3127 * `decodeStrings` {boolean}
3481 * `decodeStrings` {boolean} Whether to encode `string`s passed to
3637 `decodeStrings` option is `false` or the stream is operating in object mode,
3670 If the `decodeStrings` property is explicitly set to `false` in the constructor
3688 the `decodeStrings` option set to `false` and a string was passed to `write()`.
4262 decodeStrings: false, // Accept string input rather than Buffers
4492 `decodeStrings` option is `false` or the stream is operating in object mode,
/third_party/node/lib/
Dnet.js420 options.decodeStrings = false;

12