Home
last modified time | relevance | path

Searched refs:fourthByte (Results 1 – 4 of 4) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsetRecog_mbcs.java481 int fourthByte = 0; in nextChar() local
511 fourthByte = it.nextByte(det); in nextChar()
513 if (fourthByte >= 0x30 && fourthByte <= 0x39) { in nextChar()
514 … it.charValue = (it.charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_mbcs.java480 int fourthByte = 0; in nextChar() local
510 fourthByte = it.nextByte(det); in nextChar()
512 if (fourthByte >= 0x30 && fourthByte <= 0x39) { in nextChar()
513 … it.charValue = (it.charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
/external/icu/icu4c/source/i18n/
Dcsrmbcs.cpp462 int32_t fourthByte = 0; in nextChar() local
495 fourthByte = it->nextByte(det); in nextChar()
497 if (fourthByte >= 0x30 && fourthByte <= 0x39) { in nextChar()
498 it->charValue = (it->charValue << 16) | (thirdByte << 8) | fourthByte; in nextChar()
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/mbcs/
DEUCTool.java307 int fourthByte = 0; in nextChar() local
357 … + " " + Integer.toHexString(thirdByte) + " " + Integer.toHexString(fourthByte)); in nextChar()