Searched refs:mScore (Results 1 - 7 of 7) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
H A Dsuggested_word.h45 : mCodePoints(codePoints, codePoints + codePointCount), mScore(score),
58 return mScore;
77 int mScore; member in class:latinime::SuggestedWord
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DSuggestionResults.java79 if (o1.mScore > o2.mScore) return -1;
80 if (o1.mScore < o2.mScore) return 1;
H A DAutoCorrectionUtils.java41 final int autoCorrectionSuggestionScore = suggestion.mScore;
H A DDistracterFilterCheckingExactMatchesAndSuggestions.java274 final int suggestionScore = suggestion.mScore;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSuggest.java242 if (suggestionsContainer.get(i).mScore < SUPPRESS_SUGGEST_THRESHOLD) {
271 typedWord, cur.toString(), cur.mScore);
275 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore,
278 scoreInfoString = Integer.toString(cur.mScore);
305 return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKindAndFlags,
H A DSuggestedWords.java248 public final int mScore; field in class:SuggestedWords.SuggestedWordInfo
276 mScore = score;
292 mScore = SuggestedWordInfo.MAX_SCORE;
423 newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKindAndFlags,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidWordLevelSpellCheckerSession.java345 Log.i(TAG, "" + suggestedWordInfo.mScore + " " + suggestedWordInfo.mWord);
368 final int bestScore = suggestionResults.first().mScore;

Completed in 96 milliseconds