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 105 toUBytesArray[toULength++] = source.get();
110 && toUBytesArray[toULength - 1] == BOM_BE[toULength - 1]) {
114 && toUBytesArray[toULength - 1] == BOM_LE[toULength - 1]) {
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])) {
135 } else if (isEndianSpecified || toUBytesArray[toULength - 1] != actualBOM[toULength - 1]) {
166 toUBytesArray[toULength++] = source.get();
169 if (isEndianSpecified && version == 1 && (toUBytesArray[toULength - 1] == actualBOM[toULength - 2] && toUBytesArray[toULength - 2] == actualBOM[toULength (…)
    [all...]
CharsetUTF32.java 87 toUBytesArray[toULength++] = source.get();
92 && toUBytesArray[toULength - 1] == BOM_BE[toULength - 1]) {
96 && toUBytesArray[toULength - 1] == BOM_LE[toULength - 1]) {
105 } else if (toUBytesArray[toULength - 1] != actualBOM[toULength - 1]) {
128 toUBytesArray[toULength++] = source.get();
137 | (toUBytesArray[i ^ actualEndianXOR] & UConverterConstants.UNSIGNED_BYTE_MASK);
CharsetHZ.java 100 this.toUBytesArray[0] = UCNV_TILDE;
101 this.toUBytesArray[1] = (byte)mySourceChar;
120 toUBytesArray[0] = UCNV_TILDE;
127 toUBytesArray[1] = (byte)mySourceChar;
199 toUBytesArray[toUBytesBegin + 0] = (byte) (mySourceChar >> 8);
200 toUBytesArray[toUBytesBegin + 1] = (byte) mySourceChar;
203 toUBytesArray[toUBytesBegin + 0] = (byte) mySourceChar;
CharsetUTF7.java 234 toUBytesArray[0]=(byte)b;
280 toUBytesArray[byteIndex++]=(byte)b;
302 toUBytesArray[0]=PLUS;
355 toUBytesArray[0]=(byte)b; /* keep this byte in case an error occurs */
374 toUBytesArray[0]=(byte)b; /* keep this byte in case an error occurs */
425 toUBytesArray[0]=AMPERSAND;
426 toUBytesArray[1]=(byte)b;
449 toUBytesArray[0]=AMPERSAND;
    [all...]
CharsetSCSU.java 401 toUBytesArray[0] = (byte)b;
408 toUBytesArray[0] = (byte)b;
413 toUBytesArray[1] = (byte)b;
471 toUBytesArray[1] = (byte)b;
484 toUBytesArray[1] = (byte)b;
496 toUBytesArray[1] = (byte)b;
521 toUBytesArray[0] = (byte)b;
533 toUBytesArray[0] = (byte)b;
540 toUBytesArray[0] = (byte)b;
546 toUBytesArray[0] = (byte)b
    [all...]
CharsetUTF8.java 92 char32 = (toUBytesArray[0] = sourceArray[sourceIndex++]) & 0xff;
118 if (((ch = toUBytesArray[bytesSoFar] = sourceArray[sourceIndex++]) & 0xc0) != 0x80) {
168 while ((bytesExpected = BYTES_FROM_UTF8[char32 = (toUBytesArray[0] = sourceArray[sourceIndex++]) & 0xff]) == 1) {
212 char32 = (toUBytesArray[0] = source.get(sourceIndex++)) & 0xff;
238 if (((ch = toUBytesArray[bytesSoFar] = source.get(sourceIndex++)) & 0xc0) != 0x80) {
305 while ((bytesExpected = BYTES_FROM_UTF8[char32 = (toUBytesArray[0] = source.get(sourceIndex++)) & 0xff]) == 1) {
CharsetCompoundText.java 523 sourceChar[0] = this.toUBytesArray[0];
529 tmpState = findStateFromEscSeq(source, this.toUBytesArray, this.toULength);
532 this.toUBytesArray[this.toULength++] = source.get();
569 decoder.toUBytesArray = this.toUBytesArray;
CharsetISO2022.java 543 decoder.toUBytesArray[decoder.toULength++] = c;
    [all...]
CharsetDecoderICU.java 30 byte[] toUBytesArray = new byte[128];
613 copy(toUBytesArray, 0, invalidCharBuffer, 0, errorInputLength);
CharsetASCII.java 162 * put the guilty character into toUBytesArray and return a message saying that the
165 toUBytesArray[0] = (byte) ch;
CharsetLMBCS.java     [all...]
CharsetMBCS.java     [all...]
CharsetBOCU1.java 810 bytes = toUBytesArray;
    [all...]
CharsetISCII.java     [all...]

Completed in 92 milliseconds