Lines Matching refs:TextDecoder
17 assert(TextDecoder);
22 const dec = new TextDecoder(i);
29 const dec = new TextDecoder(i);
40 const dec = new TextDecoder(i, { ignoreBOM: true });
46 const dec = new TextDecoder(i, { ignoreBOM: true });
57 const dec = new TextDecoder(i, { fatal: true });
68 const dec = new TextDecoder(i, { fatal: true });
74 () => new TextDecoder('utf-8', { fatal: true }),
84 const dec = new TextDecoder(undefined, null);
93 const dec = new TextDecoder('utf-16le');
100 const dec = new TextDecoder('utf-16be');
107 const dec = new TextDecoder('utf-8', { ignoreBOM: true });
139 const dec = new TextDecoder('utf-8', { ignoreBOM: true });
148 const dec = new TextDecoder();
153 const inspectFn = TextDecoder.prototype[inspect];
154 const decodeFn = TextDecoder.prototype.decode;
159 } = Object.getOwnPropertyDescriptors(TextDecoder.prototype);
161 const instance = new TextDecoder();
187 () => new TextDecoder('utf-8', 1),