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

  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF16.java 109 toUBytesArray[toULength++] = source.get();
114 && toUBytesArray[toULength - 1] == BOM_BE[toULength - 1]) {
118 && toUBytesArray[toULength - 1] == BOM_LE[toULength - 1]) {
132 } else if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 2] && toUBytesArray[toULength - 2] == actualBOM[toULength - 1])) {
134 } else if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 1] && toUBytesArray[toULength - 2] == actualBOM[toULength - 2])) {
139 } else if (isEndianSpecified || toUBytesArray[toULength - 1] != actualBOM[toULength - 1]) {
170 toUBytesArray[toULength++] = source.get();
173 if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 2] && toUBytesArray[toULength - 2] == actualBOM[toULength (…)
    [all...]
CharsetUTF32.java 91 toUBytesArray[toULength++] = source.get();
96 && toUBytesArray[toULength - 1] == BOM_BE[toULength - 1]) {
100 && toUBytesArray[toULength - 1] == BOM_LE[toULength - 1]) {
109 } else if (toUBytesArray[toULength - 1] != actualBOM[toULength - 1]) {
132 toUBytesArray[toULength++] = source.get();
141 | (toUBytesArray[i ^ actualEndianXOR] & UConverterConstants.UNSIGNED_BYTE_MASK);
CharsetHZ.java 104 this.toUBytesArray[0] = UCNV_TILDE;
105 this.toUBytesArray[1] = (byte)mySourceChar;
124 toUBytesArray[0] = UCNV_TILDE;
131 toUBytesArray[1] = (byte)mySourceChar;
203 toUBytesArray[toUBytesBegin + 0] = (byte) (mySourceChar >> 8);
204 toUBytesArray[toUBytesBegin + 1] = (byte) mySourceChar;
207 toUBytesArray[toUBytesBegin + 0] = (byte) mySourceChar;
CharsetUTF7.java 238 toUBytesArray[0]=(byte)b;
284 toUBytesArray[byteIndex++]=(byte)b;
306 toUBytesArray[0]=PLUS;
359 toUBytesArray[0]=(byte)b; /* keep this byte in case an error occurs */
378 toUBytesArray[0]=(byte)b; /* keep this byte in case an error occurs */
429 toUBytesArray[0]=AMPERSAND;
430 toUBytesArray[1]=(byte)b;
453 toUBytesArray[0]=AMPERSAND;
    [all...]
CharsetSCSU.java 403 toUBytesArray[0] = (byte)b;
410 toUBytesArray[0] = (byte)b;
415 toUBytesArray[1] = (byte)b;
473 toUBytesArray[1] = (byte)b;
486 toUBytesArray[1] = (byte)b;
498 toUBytesArray[1] = (byte)b;
523 toUBytesArray[0] = (byte)b;
535 toUBytesArray[0] = (byte)b;
542 toUBytesArray[0] = (byte)b;
548 toUBytesArray[0] = (byte)b
    [all...]
CharsetUTF8.java 95 char32 = (toUBytesArray[0] = sourceArray[sourceIndex++]) & 0xff;
121 if (((ch = toUBytesArray[bytesSoFar] = sourceArray[sourceIndex++]) & 0xc0) != 0x80) {
171 while ((bytesExpected = BYTES_FROM_UTF8[char32 = (toUBytesArray[0] = sourceArray[sourceIndex++]) & 0xff]) == 1) {
215 char32 = (toUBytesArray[0] = source.get(sourceIndex++)) & 0xff;
241 if (((ch = toUBytesArray[bytesSoFar] = source.get(sourceIndex++)) & 0xc0) != 0x80) {
308 while ((bytesExpected = BYTES_FROM_UTF8[char32 = (toUBytesArray[0] = source.get(sourceIndex++)) & 0xff]) == 1) {
CharsetCompoundText.java 529 sourceChar[0] = this.toUBytesArray[0];
535 tmpState = findStateFromEscSeq(source, this.toUBytesArray, this.toULength);
538 this.toUBytesArray[this.toULength++] = source.get();
575 decoder.toUBytesArray = this.toUBytesArray;
CharsetISO2022.java 542 decoder.toUBytesArray[decoder.toULength++] = c;
    [all...]
CharsetDecoderICU.java 32 byte[] toUBytesArray = new byte[128];
621 copy(toUBytesArray, 0, invalidCharBuffer, 0, errorInputLength);
CharsetASCII.java 165 * put the guilty character into toUBytesArray and return a message saying that the
168 toUBytesArray[0] = (byte) ch;
CharsetLMBCS.java     [all...]
CharsetMBCS.java     [all...]
CharsetBOCU1.java 813 bytes = toUBytesArray;
    [all...]
CharsetISCII.java     [all...]

Completed in 532 milliseconds