HomeSort by relevance Sort by last modified time
    Searched refs:normalizedScore (Results 1 - 4 of 4) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AutoCorrectionUtils.java 44 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore(
48 + autoCorrectionSuggestionScore + ", " + normalizedScore
51 if (normalizedScore >= autoCorrectionThreshold) {
DistracterFilterCheckingExactMatchesAndSuggestions.java 275 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore(
278 Log.d(TAG, "normalizedScore: " + normalizedScore);
281 if (normalizedScore > distracterThreshold) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 270 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore(
273 if (normalizedScore > 0) {
275 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 370 final float normalizedScore = BinaryDictionaryUtils.calcNormalizedScore(
372 final boolean hasRecommendedSuggestions = (normalizedScore > recommendedThreshold);
375 Log.i(TAG, "Normalized score = " + normalizedScore

Completed in 260 milliseconds