Searched refs:bytesToCheck (Results 1 - 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCharsetRecog_Unicode.java69 int bytesToCheck = Math.min(input.length, 30);
70 for (int charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
81 if (bytesToCheck < 4 && confidence < 100) {
105 int bytesToCheck = Math.min(input.length, 30);
106 for (int charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
117 if (bytesToCheck < 4 && confidence < 100) {
/external/icu/icu4c/source/i18n/
H A Dcsrucode.cpp61 int32_t bytesToCheck = (length > 30) ? 30 : length; local
62 for (int32_t charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
73 if (bytesToCheck < 4 && confidence < 100) {
96 int32_t bytesToCheck = (length > 30) ? 30 : length; local
97 for (int32_t charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
111 if (bytesToCheck < 4 && confidence < 100) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCharsetRecog_Unicode.java68 int bytesToCheck = Math.min(input.length, 30);
69 for (int charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
80 if (bytesToCheck < 4 && confidence < 100) {
104 int bytesToCheck = Math.min(input.length, 30);
105 for (int charIndex=0; charIndex<bytesToCheck-1; charIndex+=2) {
116 if (bytesToCheck < 4 && confidence < 100) {

Completed in 153 milliseconds