Home
last modified time | relevance | path

Searched defs:ignoreBOM (Results 1 – 14 of 14) sorted by relevance

/third_party/node/benchmark/util/
Dtext-decoder.js7 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/test/fixtures/wpt/encoding/
Dtextdecoder-ignorebom.any.js12 var decoder = new TextDecoder(testCase.encoding, {ignoreBOM: true}); property
23 decoder = new TextDecoder(testCase.encoding, {ignoreBOM: false}); property
49 …assert_true(new TextDecoder('utf-8', {ignoreBOM: true}).ignoreBOM, 'The ignoreBOM attribute can be… property
/third_party/node/test/fixtures/wpt/encoding/streams/
Ddecode-attributes.any.js31 const stream = new TextDecoderStream('utf-8', { ignoreBOM: falseValue }); property
43 const stream = new TextDecoderStream('utf-8', { ignoreBOM: trueValue }); property
69 get ignoreBOM() { throw new Error(); } getter
Ddecode-ignore-bom.any.js15 async function pipeAndAssemble(inputChunks, encoding, ignoreBOM) { argument
19 new TextDecoderStream(encoding, {ignoreBOM}))); field
/third_party/node/test/parallel/
Dtest-whatwg-encoding-custom-textdecoder-ignorebom.js23 let decoder = new TextDecoder(testCase.encoding, { ignoreBOM: true }); property
26 decoder = new TextDecoder(testCase.encoding, { ignoreBOM: false }); property
Dtest-whatwg-encoding-custom-textdecoder.js40 const dec = new TextDecoder(i, { ignoreBOM: true }); property
46 const dec = new TextDecoder(i, { ignoreBOM: true }); property
120 const dec = new TextDecoder('utf-8', { ignoreBOM: true }); property
152 const dec = new TextDecoder('utf-8', { ignoreBOM: true }); property
/third_party/node/lib/internal/webstreams/
Dencoding.js191 get ignoreBOM() { getter in TextDecoderStream
223 ignoreBOM: this[kHandle].ignoreBOM, property
239 ignoreBOM: kEnumerableProperty, property
/third_party/node/deps/undici/src/lib/fetch/
Dbody.js448 const streamingDecoder = new TextDecoder('utf-8', { ignoreBOM: true }) property
/third_party/node/lib/internal/
Dencoding.js568 get ignoreBOM() { getter
/third_party/typescript/lib/
Dlib.webworker.d.ts654 ignoreBOM?: boolean; property
3279 readonly ignoreBOM: boolean; property
Dlib.dom.d.ts1787 ignoreBOM?: boolean; property
14147 readonly ignoreBOM: boolean; property
/third_party/typescript/src/lib/
Dwebworker.generated.d.ts634 ignoreBOM?: boolean; property
3259 readonly ignoreBOM: boolean; property
Ddom.generated.d.ts1767 ignoreBOM?: boolean; property
14127 readonly ignoreBOM: boolean; property
/third_party/node/deps/undici/
Dundici.js5511 const streamingDecoder = new TextDecoder("utf-8", { ignoreBOM: true }); property