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 130 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
135 + autoCorrectionSuggestionScore + ", " + normalizedScore
138 if (normalizedScore >= autoCorrectionThreshold) {
Suggest.java 420 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
423 if (normalizedScore > 0) {
424 scoreInfoString = String.format("%d (%4.2f)", cur.mScore, normalizedScore);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 282 final float normalizedScore =
284 if (normalizedScore < mSuggestionThreshold) {
316 final float normalizedScore = BinaryDictionary.calcNormalizedScore(
318 hasRecommendedSuggestions = (normalizedScore > mRecommendedThreshold);
350 final float normalizedScore =
353 hasRecommendedSuggestions = (normalizedScore > mRecommendedThreshold);
356 Log.i(TAG, "Normalized score = " + normalizedScore
    [all...]

Completed in 178 milliseconds