/third_party/node/test/fixtures/wpt/encoding/ |
D | textdecoder-ignorebom.any.js | 12 var decoder = new TextDecoder(testCase.encoding, {ignoreBOM: true}); property 23 decoder = new TextDecoder(testCase.encoding, {ignoreBOM: false}); property 47 …assert_equals(typeof new TextDecoder().ignoreBOM, 'boolean', 'The type of the ignoreBOM attribute… 48 assert_false(new TextDecoder().ignoreBOM, 'The ignoreBOM attribute should default to false.'); 49 …assert_true(new TextDecoder('utf-8', {ignoreBOM: true}).ignoreBOM, 'The ignoreBOM attribute can be… property
|
/third_party/node/test/fixtures/wpt/encoding/streams/ |
D | decode-attributes.any.js | 31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue }); property 32 assert_false(stream.ignoreBOM, 'ignoreBOM should be false'); 43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue }); property 44 assert_true(stream.ignoreBOM, 'ignoreBOM should be true'); 69 get ignoreBOM() { throw new Error(); } getter
|
D | decode-ignore-bom.any.js | 15 async function pipeAndAssemble(inputChunks, encoding, ignoreBOM) { argument 19 new TextDecoderStream(encoding, {ignoreBOM}))); field
|
/third_party/node/test/parallel/ |
D | test-whatwg-encoding-custom-textdecoder.js | 40 const dec = new TextDecoder(i, { ignoreBOM: true }); property 46 const dec = new TextDecoder(i, { ignoreBOM: true }); property 100 assert.strictEqual(dec.ignoreBOM, false); 120 const dec = new TextDecoder('utf-8', { ignoreBOM: true }); property 152 const dec = new TextDecoder('utf-8', { ignoreBOM: true }); property 171 ignoreBOM: { get: ignoreBOMGetter },
|
D | test-whatwg-encoding-custom-textdecoder-ignorebom.js | 23 let decoder = new TextDecoder(testCase.encoding, { ignoreBOM: true }); property 26 decoder = new TextDecoder(testCase.encoding, { ignoreBOM: false }); property
|
D | test-whatwg-webstreams-encoding.js | 47 assert.strictEqual(tds.ignoreBOM, false);
|
/third_party/node/lib/internal/webstreams/ |
D | encoding.js | 191 get ignoreBOM() { getter in TextDecoderStream 194 return this[kHandle].ignoreBOM; 223 ignoreBOM: this[kHandle].ignoreBOM, property 239 ignoreBOM: kEnumerableProperty, property
|
/third_party/node/benchmark/util/ |
D | text-decoder.js | 7 ignoreBOM: [0, 1], property 14 function main({ encoding, len, n, ignoreBOM, type, fatal }) { property 15 const decoder = new TextDecoder(encoding, { ignoreBOM, fatal }); property
|
/third_party/node/lib/internal/ |
D | encoding.js | 402 flags |= options.ignoreBOM ? CONVERTER_FLAGS_IGNORE_BOM : 0; 408 this[kIgnoreBOM] = Boolean(options?.ignoreBOM); 487 flags |= options.ignoreBOM ? CONVERTER_FLAGS_IGNORE_BOM : 0; 568 get ignoreBOM() { getter 582 obj.ignoreBOM = this.ignoreBOM;
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | encoding.idl | 9 readonly attribute boolean ignoreBOM; 14 boolean ignoreBOM = false;
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_util.js | 35 this.ignoreBOM = "[PC preview] unknow ignoreBOM"
|
/third_party/node/deps/undici/src/lib/fetch/ |
D | body.js | 447 const textDecoder = new TextDecoder('utf-8', { ignoreBOM: true }) property
|
/third_party/node/doc/api/ |
D | webstreams.md | 1303 * `ignoreBOM` {boolean} When `true`, the `TextDecoderStream` will include the 1331 #### `textDecoderStream.ignoreBOM`
|
D | util.md | 1837 * `ignoreBOM` {boolean} When `true`, the `TextDecoder` will include the byte 1876 ### `textDecoder.ignoreBOM`
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 654 ignoreBOM?: boolean; property 3279 readonly ignoreBOM: boolean; property
|
D | lib.dom.d.ts | 1787 ignoreBOM?: boolean; property 14147 readonly ignoreBOM: boolean; property
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 634 ignoreBOM?: boolean; property 3259 readonly ignoreBOM: boolean; property
|
D | dom.generated.d.ts | 1767 ignoreBOM?: boolean; property 14127 readonly ignoreBOM: boolean; property
|
/third_party/node/deps/undici/ |
D | undici.js | 4485 const textDecoder = new TextDecoder("utf-8", { ignoreBOM: true }); property
|