Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DAutoCorrectionUtils.java44 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore( in suggestionExceedsAutoCorrectionThreshold() local
48 + autoCorrectionSuggestionScore + ", " + normalizedScore in suggestionExceedsAutoCorrectionThreshold()
51 if (normalizedScore >= autoCorrectionThreshold) { in suggestionExceedsAutoCorrectionThreshold()
DDistracterFilterCheckingExactMatchesAndSuggestions.java275 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore( in suggestionExceedsDistracterThreshold() local
278 Log.d(TAG, "normalizedScore: " + normalizedScore); in suggestionExceedsDistracterThreshold()
281 if (normalizedScore > distracterThreshold) { in suggestionExceedsDistracterThreshold()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggest.java270 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore( in getSuggestionsInfoListWithDebugInfo() local
273 if (normalizedScore > 0) { in getSuggestionsInfoListWithDebugInfo()
275 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore, in getSuggestionsInfoListWithDebugInfo()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidWordLevelSpellCheckerSession.java370 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore( in getResult() local
372 final boolean hasRecommendedSuggestions = (normalizedScore > recommendedThreshold); in getResult()
375 Log.i(TAG, "Normalized score = " + normalizedScore in getResult()