Home
last modified time | relevance | path

Searched refs:BOM (Results 1 – 25 of 99) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-stream-preprocess.js9 const BOM = '\uFEFF'; constant
20 `${BOM}${modelData}`
30 assert.notStrictEqual(maybeBOM, BOM);
50 assert.strictEqual(maybeBOM, BOM);
Dtest-whatwg-encoding-custom-textdecoder-ignorebom.js22 const BOM = '\uFEFF'; constant
25 assert.strictEqual(decoder.decode(bytes), `${BOM}abc`);
/third_party/node/deps/npm/node_modules/iconv-lite/
DREADME.md120 ## BOM handling
122 * Decoding: BOM is stripped by default, unless overridden by passing `stripBOM: false` in options
124 …A callback might also be given as a `stripBOM` parameter - it'll be called if BOM character was ac…
125 …* If you want to detect UTF-8 BOM when decoding other encodings, use [node-autodetect-decoder-stre…
126 * Encoding: No BOM added, unless overridden by `addBOM: true` option.
132 …* Decoding: uses BOM and 'spaces heuristic' to determine input endianness. Default is UTF-16LE, bu…
133 overridden with `defaultEncoding: 'utf-16be'` option. Strips BOM unless `stripBOM: false`.
134 * Encoding: uses UTF-16LE and writes BOM by default. Use `addBOM: false` to override.
DChangelog.md93 * Streamlined BOM handling: strip BOM by default, add BOM when encoding if
136 * added encodings UTF-16BE and UTF-16 with BOM
/third_party/node/test/fixtures/wpt/encoding/streams/
Ddecode-ignore-bom.any.js10 const BOM = '\uFEFF'; constant
30 assert_equals(withIgnoreBOM, BOM + 'abc', 'BOM should be preserved');
/third_party/python/Lib/test/
Dtokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt2 # IMPORTANT: this file has the utf-8 BOM signature '\xef\xbb\xbf'
5 # the presence of a utf-8 BOM signature -- this is intended.
/third_party/node/test/fixtures/wpt/encoding/
Dtextdecoder-ignorebom.any.js11 var BOM = '\uFEFF';
16 BOM + 'abc',
/third_party/typescript/tests/baselines/reference/
DemitBOM.sourcemap.txt11 >>>// JS and d.ts output should have a BOM but not the sourcemap
15 2 >// JS and d.ts output should have a BOM but not the sourcemap
DduplicateLocalVariable1.types206BOM detection tests testRunner.addTest(new TestCase("Check encoding detection no BOM", f…
207BOM detection tests testRunner.addTest(new TestCase("Check encoding detection no BOM", f…
208BOM detection tests testRunner.addTest(new TestCase("Check encoding detection no BOM", f…
633 // File BOM detection tests
634 testRunner.addTest(new TestCase("Check encoding detection no BOM",
635 >testRunner.addTest(new TestCase("Check encoding detection no BOM", function () { …
639 >new TestCase("Check encoding detection no BOM", function () { var fb = new FileM…
641 >"Check encoding detection no BOM" : "Check encoding detection no BOM"
670 testRunner.addTest(new TestCase("Check encoding detection UTF8 BOM",
671 >testRunner.addTest(new TestCase("Check encoding detection UTF8 BOM", function () { …
[all …]
DemitBOM.types2 // JS and d.ts output should have a BOM but not the sourcemap
DemitBOM.symbols2 // JS and d.ts output should have a BOM but not the sourcemap
DduplicateLocalVariable1.errors.txt126 // File BOM detection tests
127 testRunner.addTest(new TestCase("Check encoding detection no BOM",
132 testRunner.addTest(new TestCase("Check encoding detection UTF8 BOM",
137 testRunner.addTest(new TestCase("Check encoding detection UTF16be BOM",
142 testRunner.addTest(new TestCase("Check encoding detection UTF16le BOM",
DtemplateStringWhitespaceEscapes2.types2 // <TAB>, <VT>, <FF>, <SP>, <NBSP>, <BOM>
DtemplateStringWhitespaceEscapes2_ES6.types2 // <TAB>, <VT>, <FF>, <SP>, <NBSP>, <BOM>
/third_party/rust/crates/syn/src/
Dlib.rs962 const BOM: &str = "\u{feff}"; in parse_file() constant
963 if content.starts_with(BOM) { in parse_file()
964 content = &content[BOM.len()..]; in parse_file()
/third_party/PyYAML/tests/data/
Dspec-05-02-utf8.data1 # Invalid use of BOM
Dspec-05-02-utf16le.error2 A BOM must not appear
Dspec-05-02-utf16be.error2 A BOM must not appear
Dspec-05-02-utf8.error2 A BOM must not appear
/third_party/icu/icu4c/source/samples/ugrep/
DMakefile20 CHECK_ARGS=BOM readme.txt
Dreadme.txt18 begin with a BOM, in which case they are assumed to be in the UTF encoding
19 specified by the BOM. Program output is always in the system's default
/third_party/flutter/skia/third_party/externals/icu/source/samples/ugrep/
DMakefile20 CHECK_ARGS=BOM readme.txt
Dreadme.txt18 begin with a BOM, in which case they are assumed to be in the UTF encoding
19 specified by the BOM. Program output is always in the system's default
/third_party/skia/third_party/externals/icu/source/samples/ugrep/
DMakefile20 CHECK_ARGS=BOM readme.txt
Dreadme.txt18 begin with a BOM, in which case they are assumed to be in the UTF encoding
19 specified by the BOM. Program output is always in the system's default

1234