Home
last modified time | relevance | path

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

/third_party/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()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/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()
/third_party/skia/third_party/externals/icu/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()
/third_party/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()
/third_party/node/deps/icu-small/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()
/third_party/flutter/skia/third_party/externals/icu/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()
/third_party/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()