HomeSort by relevance Sort by last modified time
    Searched defs:bom (Results 1 - 25 of 49) sorted by null

1 2

  /external/icu/icu4c/as_is/
bomlist.py 24 bom=codecs.BOM_UTF8 variable
38 if bytes and (bytes == bom):
  /external/libdrm/radeon/
radeon_bo_int.h 18 struct radeon_bo_manager *bom; member in struct:radeon_bo_int
25 struct radeon_bo *(*bo_open)(struct radeon_bo_manager *bom,
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodedstream.h 136 // Detect encoding type with BOM or RFC 4627
138 // BOM (Byte Order Mark):
149 unsigned bom = static_cast<unsigned>(c[0] | (c[1] << 8) | (c[2] << 16) | (c[3] << 24)); local
151 if (bom == 0xFFFE0000) { type_ = kUTF32BE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
152 else if (bom == 0x0000FEFF) { type_ = kUTF32LE; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); is_->Take(); }
153 else if ((bom & 0xFFFF) == 0xFFFE) { type_ = kUTF16BE; hasBOM_ = true; is_->Take(); is_->Take(); }
154 else if ((bom & 0xFFFF) == 0xFEFF) { type_ = kUTF16LE; hasBOM_ = true; is_->Take(); is_->Take(); }
155 else if ((bom & 0xFFFFFF) == 0xBFBBEF) { type_ = kUTF8; hasBOM_ = true; is_->Take(); is_->Take(); is_->Take(); }
208 \param putBOM Whether to write BOM at the beginning of the stream.
  /prebuilts/go/darwin-x86/src/go/scanner/
scanner.go 51 const bom = 0xFEFF // byte order mark, only permitted as very first character const
72 } else if r == bom && s.offset > 0 {
132 if s.ch == bom {
133 s.next() // ignore BOM at file beginning
752 if ch != bom {
  /prebuilts/go/linux-x86/src/go/scanner/
scanner.go 51 const bom = 0xFEFF // byte order mark, only permitted as very first character const
72 } else if r == bom && s.offset > 0 {
132 if s.ch == bom {
133 s.next() // ignore BOM at file beginning
752 if ch != bom {
  /external/icu/icu4c/source/common/
ucnv_u16.c 34 * "with BOM" variants of UTF-16BE and UTF-16LE.
70 /* write the BOM if necessary */
72 static const char bom[]={ (char)0xfe, (char)0xff }; local
74 bom, 2,
575 cnv->mode=8; /* no BOM handling */
577 cnv->mode=0; /* Java-specific "UnicodeBig" requires BE BOM or no BOM */
581 /* reset fromUnicode for "UnicodeBig": prepare to output the UTF-16BE BOM */
669 /* write the BOM if necessary */
671 static const char bom[]={ (char)0xff, (char)0xfe } local
    [all...]
ucnv_u32.c 229 /* write the BOM if necessary */
231 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local
233 bom, 4,
332 /* write the BOM if necessary */
334 static const char bom[]={ 0, 0, (char)0xfe, (char)0xff }; local
336 bom, 4,
707 /* write the BOM if necessary */
709 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local
711 bom, 4,
818 /* write the BOM if necessary *
820 static const char bom[]={ (char)0xff, (char)0xfe, 0, 0 }; local
    [all...]
  /external/icu/icu4c/source/test/thaitest/
thaitest.cpp 305 * Order Mark (BOM) so that we know what order to read the bytes in.
355 charCount--; // skip the BOM
409 UChar bom = 0xFEFF; local
411 printf("%s", u_strToUTF8(outbuf, sizeof(outbuf), &strlength, &bom, 1, &status));
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF16.java 39 private byte[] bom; field in class:CharsetUTF16
59 this.bom = BOM_BE;
63 this.bom = BOM_LE;
100 * If we detect a BOM in this buffer, then we must add the BOM size to the offsets because the actual
101 * converter function will not see and count the BOM. offsetDelta will have the number of the BOM bytes that
122 // we do not have a BOM (and we have toULength==1 bytes)
135 // we found a BOM! at last!
140 // we do not have a BOM (and we have toULength bytes
    [all...]
CharsetUTF32.java 38 private byte[] bom; field in class:CharsetUTF32
48 this.bom = BOM_BE;
52 this.bom = BOM_LE;
82 * If we detect a BOM in this buffer, then we must add the BOM size to the offsets because the actual
83 * converter function will not see and count the BOM. offsetDelta will have the number of the BOM bytes that
104 // we do not have a BOM (and we have toULength==1 bytes)
110 // we do not have a BOM (and we have toULength bytes)
115 // we found a BOM! at last
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_screen.h 105 struct radeon_bo_manager *bom; member in struct:radeon_screen
  /external/pdfium/samples/
pdfium_test.cc 184 uint32_t bom = 0x0000FEFF; local
185 fwrite(&bom, sizeof(bom), 1, fp);
  /external/pdfium/xfa/fde/xml/
fde_xml_imp.cpp 1279 uint8_t bom[4]; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
CharsetDecoderTest.java 49 String bom = ""; field in class:CharsetDecoderTest
376 assertCharBufferValue(bom + getString(), out);
  /external/pdfium/xfa/fde/
cfde_txtedtengine.cpp 122 uint8_t bom[4]; local
123 int32_t nPos = pStream->GetBOM(bom);
    [all...]
  /external/tinyxml2/
tinyxml2.cpp 245 const char* XMLUtil::ReadBOM( const char* p, bool* bom )
247 *bom = false;
249 // Check for BOM:
254 *bom = true;
1769 static const unsigned char bom[] = { TIXML_UTF_LEAD_0, TIXML_UTF_LEAD_1, TIXML_UTF_LEAD_2, 0 }; local
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
commons-io-2.2.jar 
  /prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /prebuilts/tools/common/offline-m2/commons-io/commons-io/2.4/
commons-io-2.4.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
unicodeobject.c 2304 const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | local
2581 const Py_UNICODE bom = (q[ihi] << 8) | q[ilo]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
unicodeobject.c 2237 const Py_UCS4 bom = (q[iorder[3]] << 24) | (q[iorder[2]] << 16) | local
2514 const Py_UNICODE bom = (q[ihi] << 8) | q[ilo]; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.core.contenttype_3.5.0.v20150421-2214.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.contenttype_3.4.200.v20130326-1255.jar 

Completed in 841 milliseconds

1 2