HomeSort by relevance Sort by last modified time
    Searched refs:BOM (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /prebuilts/go/darwin-x86/test/
bombad.go 8 // because the BOM muddles the
14 ?// There's a bom here. // ERROR "BOM"
15 //? And here. // ERROR "BOM"
16 /*? And here.*/ // ERROR "BOM"
17 println("hi? there") // and here // ERROR "BOM"
bom.go 17 prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
21 var prog = `BOM
  /prebuilts/go/linux-x86/test/
bombad.go 8 // because the BOM muddles the
14 ?// There's a bom here. // ERROR "BOM"
15 //? And here. // ERROR "BOM"
16 /*? And here.*/ // ERROR "BOM"
17 println("hi? there") // and here // ERROR "BOM"
bom.go 17 prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
21 var prog = `BOM
  /external/icu/icu4c/source/samples/ugrep/
Makefile 20 CHECK_ARGS=BOM readme.txt
  /prebuilts/go/darwin-x86/test/fixedbugs/issue5260.dir/
a.go 7 const BOM = "\uFEFF"
b.go 10 _ = a.BOM
  /prebuilts/go/linux-x86/test/fixedbugs/issue5260.dir/
a.go 7 const BOM = "\uFEFF"
b.go 10 _ = a.BOM
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5260.go 7 // Issue 5260: Unicode BOM in exported string constant
issue13268.go 8 // middle of a BOM.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5260.go 7 // Issue 5260: Unicode BOM in exported string constant
issue13268.go 8 // middle of a BOM.
  /libcore/ojluni/src/main/resources/sun/nio/cs/
standard-charsets 83 charset x-UTF-16LE-BOM UTF_16LE_BOM
98 charset X-UTF-32LE-BOM UTF_32LE_BOM
100 alias UTF-32LE-BOM
102 charset X-UTF-32BE-BOM UTF_32BE_BOM
104 alias UTF-32BE-BOM
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
source.go 142 // BOM's are only allowed as the first character in a file
143 const BOM = 0xfeff
144 if r == BOM {
146 s.error("invalid BOM in the middle of the file")
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
source.go 142 // BOM's are only allowed as the first character in a file
143 const BOM = 0xfeff
144 if r == BOM {
146 s.error("invalid BOM in the middle of the file")
  /external/python/cpython3/PC/
launcher.c 970 } BOM;
976 static BOM BOMs[] = {
978 /* Test UTF-32LE before UTF-16LE since UTF-16LE BOM is a prefix
979 * of UTF-32LE BOM. */
987 static BOM *
991 * Look for a BOM in the input and return a pointer to the
994 BOM * result = NULL;
995 BOM *bom; local
997 for (bom = BOMs; bom->length; bom++)
1130 BOM* bom; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
dumpICUrules.bat 375 my $BOM = pack("C3", 239, 187, 191); # a UTF8 byte order mark
388 # Look for and delete BOM
390 s/^$BOM//;
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 383 const BOM = '\uFEFF'
384 BOMs := string(BOM)
386 checkTok(t, s, 1, s.Scan(), Ident, "if") // the first BOM is ignored
399 checkTok(t, s, 3, s.Scan(), BOM, BOMs)
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 383 const BOM = '\uFEFF'
384 BOMs := string(BOM)
386 checkTok(t, s, 1, s.Scan(), Ident, "if") // the first BOM is ignored
399 checkTok(t, s, 3, s.Scan(), BOM, BOMs)
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner_test.go 349 "\ufeff#;", // first BOM is ignored
726 {"\ufeff\ufeff", token.ILLEGAL, 3, "\ufeff\ufeff", "illegal byte order mark"}, // only first BOM is ignored
727 {"//\ufeff", token.COMMENT, 2, "//\ufeff", "illegal byte order mark"}, // only first BOM is ignored
728 {"'\ufeff" + `'`, token.CHAR, 1, "'\ufeff" + `'`, "illegal byte order mark"}, // only first BOM is ignored
729 {`"` + "abc\ufeffdef" + `"`, token.STRING, 4, `"` + "abc\ufeffdef" + `"`, "illegal byte order mark"}, // only first BOM is ignored
  /prebuilts/go/linux-x86/src/go/scanner/
scanner_test.go 349 "\ufeff#;", // first BOM is ignored
726 {"\ufeff\ufeff", token.ILLEGAL, 3, "\ufeff\ufeff", "illegal byte order mark"}, // only first BOM is ignored
727 {"//\ufeff", token.COMMENT, 2, "//\ufeff", "illegal byte order mark"}, // only first BOM is ignored
728 {"'\ufeff" + `'`, token.CHAR, 1, "'\ufeff" + `'`, "illegal byte order mark"}, // only first BOM is ignored
729 {`"` + "abc\ufeffdef" + `"`, token.STRING, 4, `"` + "abc\ufeffdef" + `"`, "illegal byte order mark"}, // only first BOM is ignored
  /external/icu/icu4c/source/test/cintltst/
ccapitst.c 244 UChar BOM = 0x0000;
728 ucnv_setFromUCallBack(myConverter, otherUnicodeAction(MIA1), &BOM, &oldFromUAction, &oldFromUContext, &err);
735 if (MIA1_2 != otherUnicodeAction(MIA1) || MIA1Context2 != &BOM)
742 if (U_FAILURE(err) || oldFromUAction != otherUnicodeAction(MIA1) || oldFromUContext != &BOM)
756 ucnv_setFromUCallBack(myConverter, otherUnicodeAction(MIA1), &BOM, &oldFromUAction, &oldFromUContext, &err);
758 if(MIA1_2 == otherUnicodeAction(MIA1) || MIA1Context2 == &BOM){
768 ucnv_setToUCallBack(myConverter,otherCharAction(MIA2), &BOM, &oldToUAction, &oldToUContext, &err);
775 if (MIA2_2 != otherCharAction(MIA2) || MIA2Context2 != &BOM)
782 if (U_FAILURE(err) || oldToUAction != otherCharAction(MIA2) || oldToUContext != &BOM)
796 if (MIA2_2 == otherCharAction(MIA2) || MIA2Context2 == &BOM){
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
codecs.py 19 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
36 # Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF)
59 BOM = BOM_UTF16 = BOM_UTF16_LE
67 BOM = BOM_UTF16 = BOM_UTF16_BE
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
codecs.py 19 __all__ = ["register", "lookup", "open", "EncodedFile", "BOM", "BOM_BE",
30 # Byte Order Mark (BOM = ZERO WIDTH NO-BREAK SPACE = U+FEFF)
53 BOM = BOM_UTF16 = BOM_UTF16_LE
61 BOM = BOM_UTF16 = BOM_UTF16_BE
    [all...]

Completed in 806 milliseconds

1 2 3 4 5 6 7 8