/third_party/node/test/parallel/ |
D | test-stream-writable-change-default-encoding.js | 43 }, { decodeStrings: false }); property 51 }, { decodeStrings: false }); property 61 { decodeStrings: false }); property 74 }, { decodeStrings: false }); property
|
D | test-stream-writable-decoded-encoding.js | 45 }, { decodeStrings: true }); property 55 }, { decodeStrings: false }); property
|
D | test-repl-colors.js | 11 const inout = new Duplex({ decodeStrings: false }); property
|
D | test-stream-writable-write-error.js | 66 decodeStrings: false, property
|
D | test-console-tty-colors.js | 26 decodeStrings: false property
|
D | test-http2-createwritereq.js | 51 assert.strictEqual(req._writableState.decodeStrings, false);
|
D | test-stream2-push.js | 78 decodeStrings: false property
|
D | test-stream-writev.js | 61 const w = new stream.Writable({ decodeStrings: decode }); property
|
D | test-whatwg-webstreams-adapters-to-streamwritable.js | 166 decodeStrings: false, property
|
D | test-stream2-writable.js | 159 decodeStrings: false property
|
D | test-stream-pipeline.js | 949 decodeStrings: false, property
|
/third_party/node/lib/internal/webstreams/ |
D | adapters.js | 226 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/ |
D | lazy_transform.js | 29 this._writableState.decodeStrings = false;
|
D | writable.js | 119 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/ |
D | lazy_transform.js | 18 this._writableState.decodeStrings = false
|
D | writable.js | 105 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.js | 128 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/ |
D | index.ts | 56 super({ decodeStrings: false });
|
/third_party/node/deps/npm/node_modules/iconv-lite/lib/ |
D | streams.js | 15 options.decodeStrings = false; // We accept only strings, so we don't need to decode them.
|
/third_party/parse5/test/utils/ |
D | common.ts | 53 super({ decodeStrings: false });
|
/third_party/parse5/packages/parse5-sax-parser/lib/ |
D | index.ts | 54 super({ encoding: 'utf8', decodeStrings: false });
|
/third_party/node/lib/internal/worker/ |
D | io.js | 362 super({ decodeStrings: false }); property
|
/third_party/node/lib/internal/fs/ |
D | streams.js | 316 options.decodeStrings = true;
|
/third_party/node/doc/api/ |
D | stream.md | 3048 * `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/ |
D | net.js | 420 options.decodeStrings = false;
|