Searched refs:bestConfidenceSoFar (Results 1 – 3 of 3) sorted by relevance
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | CharsetRecog_sbcs.java | 429 int bestConfidenceSoFar = -1; in match() local 433 if (confidence > bestConfidenceSoFar) { in match() 434 bestConfidenceSoFar = confidence; in match() 438 …return bestConfidenceSoFar <= 0 ? null : new CharsetMatch(det, this, bestConfidenceSoFar, name, la… in match() 526 int bestConfidenceSoFar = -1; in match() local 530 if (confidence > bestConfidenceSoFar) { in match() 531 bestConfidenceSoFar = confidence; in match() 535 …return bestConfidenceSoFar <= 0 ? null : new CharsetMatch(det, this, bestConfidenceSoFar, name, la… in match()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | CharsetRecog_sbcs.java | 430 int bestConfidenceSoFar = -1; in match() local 434 if (confidence > bestConfidenceSoFar) { in match() 435 bestConfidenceSoFar = confidence; in match() 439 …return bestConfidenceSoFar <= 0 ? null : new CharsetMatch(det, this, bestConfidenceSoFar, name, la… in match() 527 int bestConfidenceSoFar = -1; in match() local 531 if (confidence > bestConfidenceSoFar) { in match() 532 bestConfidenceSoFar = confidence; in match() 536 …return bestConfidenceSoFar <= 0 ? null : new CharsetMatch(det, this, bestConfidenceSoFar, name, la… in match()
|
/external/icu/icu4c/source/i18n/ |
D | csrsbcs.cpp | 895 int32_t bestConfidenceSoFar = -1; in match() local 900 if (confidence > bestConfidenceSoFar) { in match() 902 bestConfidenceSoFar = confidence; in match() 905 return (bestConfidenceSoFar > 0); in match() 922 int32_t bestConfidenceSoFar = -1; in match() local 927 if (confidence > bestConfidenceSoFar) { in match() 929 bestConfidenceSoFar = confidence; in match() 932 return (bestConfidenceSoFar > 0); in match()
|