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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AutoCorrection.java 91 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
96 + autoCorrectionSuggestionScore + ", " + normalizedScore
99 if (normalizedScore >= autoCorrectionThreshold) {
Suggest.java 351 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
354 if (normalizedScore > 0) {
355 scoreInfoString = String.format("%d (%4.2f)", cur.mScore, normalizedScore);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 271 final float normalizedScore =
273 if (normalizedScore < mSuggestionThreshold) {
305 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
307 hasRecommendedSuggestions = (normalizedScore > mRecommendedThreshold);
339 final float normalizedScore =
342 hasRecommendedSuggestions = (normalizedScore > mRecommendedThreshold);
345 Log.i(TAG, "Normalized score = " + normalizedScore

Completed in 40 milliseconds