Home
last modified time | relevance | path

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

/external/icu/android_icu4j/src/main/java/android/icu/text/
DCharsetRecog_mbcs.java49 int match(CharsetDetector det, int [] commonChars) { in match() argument
71 if (commonChars != null) { in match()
73 if (Arrays.binarySearch(commonChars, (int) cv) >= 0) { in match()
111 if (commonChars == null) { in match()
190 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_sjis
228 int confidence = match(det, commonChars); in match()
252 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_big5
297 int confidence = match(det, commonChars); in match()
391 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_euc.CharsetRecog_euc_jp
412 int confidence = match(det, commonChars); in match()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DCharsetRecog_mbcs.java48 int match(CharsetDetector det, int [] commonChars) { in match() argument
70 if (commonChars != null) { in match()
72 if (Arrays.binarySearch(commonChars, (int) cv) >= 0) { in match()
110 if (commonChars == null) { in match()
189 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_sjis
227 int confidence = match(det, commonChars); in match()
251 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_big5
296 int confidence = match(det, commonChars); in match()
390 static int [] commonChars = field in CharsetRecog_mbcs.CharsetRecog_euc.CharsetRecog_euc_jp
411 int confidence = match(det, commonChars); in match()
[all …]
/external/icu/icu4c/source/i18n/
Dcsrmbcs.cpp148 int32_t CharsetRecog_mbcs::match_mbcs(InputText *det, const uint16_t commonChars[], int32_t commonC… in match_mbcs() argument
168 if (commonChars != 0) { in match_mbcs()
169 … if (binarySearch(commonChars, commonCharsLen, static_cast<uint16_t>(iter.charValue)) >= 0){ in match_mbcs()
211 if (commonChars == 0) { in match_mbcs()
Dcsrmbcs.h63 int32_t match_mbcs(InputText* det, const uint16_t commonChars[], int32_t commonCharsLen) const;