HomeSort by relevance Sort by last modified time
    Searched refs:actualBOM (Results 1 - 2 of 2) sorted by null

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF16.java 82 private byte[] actualBOM;
91 actualBOM = null;
111 actualBOM = BOM_BE;
115 actualBOM = BOM_LE;
120 actualBOM = isBigEndian ? CharsetUTF16.BOM_BE : CharsetUTF16.BOM_LE;
123 actualBOM = null;
128 } else if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 2] && toUBytesArray[toULength - 2] == actualBOM[toULength - 1])) {
130 } else if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 1] && toUBytesArray[toULength - 2] == actualBOM[toULength - 2]))
    [all...]
CharsetUTF32.java 64 private byte[] actualBOM;
73 actualBOM = null;
93 actualBOM = BOM_BE;
97 actualBOM = BOM_LE;
101 actualBOM = null;
105 } else if (toUBytesArray[toULength - 1] != actualBOM[toULength - 1]) {
107 actualBOM = null;

Completed in 52 milliseconds