/external/chromium/third_party/icu/source/common/ |
ucnv_u16.c | 32 * "with BOM" variants of UTF-16BE and UTF-16LE. 68 /* write the BOM if necessary */ 70 static const char bom[]={ (char)0xfe, (char)0xff }; local 72 bom, 2, 573 cnv->mode=8; /* no BOM handling */ 575 cnv->mode=0; /* Java-specific "UnicodeBig" requires BE BOM or no BOM */ 579 /* reset fromUnicode for "UnicodeBig": prepare to output the UTF-16BE BOM */ 667 /* write the BOM if necessary */ 669 static const char bom[]={ (char)0xff, (char)0xfe } local [all...] |
ucnv_u32.c | 226 /* write the BOM if necessary */ 228 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local 230 bom, 4, 329 /* write the BOM if necessary */ 331 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local 333 bom, 4, 704 /* write the BOM if necessary */ 706 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local 708 bom, 4, 815 /* write the BOM if necessary * 817 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local [all...] |
/external/chromium/third_party/icu/source/test/thaitest/ |
thaitest.cpp | 303 * Order Mark (BOM) so that we know what order to read the bytes in. 353 charCount--; // skip the BOM 407 UChar bom = 0xFEFF; local 409 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
|
/external/icu4c/common/ |
ucnv_u16.c | 32 * "with BOM" variants of UTF-16BE and UTF-16LE. 68 /* write the BOM if necessary */ 70 static const char bom[]={ (char)0xfe, (char)0xff }; local 72 bom, 2, 573 cnv->mode=8; /* no BOM handling */ 575 cnv->mode=0; /* Java-specific "UnicodeBig" requires BE BOM or no BOM */ 579 /* reset fromUnicode for "UnicodeBig": prepare to output the UTF-16BE BOM */ 670 /* write the BOM if necessary */ 672 static const char bom[]={ (char)0xff, (char)0xfe } local [all...] |
ucnv_u32.c | 226 /* write the BOM if necessary */ 228 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local 230 bom, 4, 329 /* write the BOM if necessary */ 331 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local 333 bom, 4, 704 /* write the BOM if necessary */ 706 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local 708 bom, 4, 815 /* write the BOM if necessary * 817 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local [all...] |
/external/icu4c/test/thaitest/ |
thaitest.cpp | 303 * Order Mark (BOM) so that we know what order to read the bytes in. 353 charCount--; // skip the BOM 407 UChar bom = 0xFEFF; local 409 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
|
/external/chromium/third_party/icu/source/tools/genrb/ |
derb.c | 77 /* 8 */ { "bom", NULL, NULL, NULL, 0, UOPT_NO_ARG, 0 }, 129 " [ -v, --verbose ] [ -e, --encoding encoding ] [ --bom ]\n" 330 static const UChar bom[] = { 0xFEFF }; local 331 printString(out, converter, bom, (int32_t)(sizeof(bom)/sizeof(*bom)));
|
/external/icu4c/tools/genrb/ |
derb.c | 77 /* 8 */ { "bom", NULL, NULL, NULL, 0, UOPT_NO_ARG, 0 }, 129 " [ -v, --verbose ] [ -e, --encoding encoding ] [ --bom ]\n" 330 static const UChar bom[] = { 0xFEFF }; local 331 printString(out, converter, bom, (int32_t)(sizeof(bom)/sizeof(*bom)));
|
/libcore/luni/src/test/java/tests/api/java/nio/charset/ |
AbstractCharsetDecoderTestCase.java | 52 String bom = ""; field in class:AbstractCharsetDecoderTestCase 398 assertCharBufferValue(out, bom + unistr);
|
/external/sqlite/dist/ |
sqlite3.c | 18250 u8 bom = 0; local [all...] |