Home
last modified time | relevance | path

Searched refs:mScore (Results 1 – 8 of 8) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DSuggestionResults.java79 if (o1.mScore > o2.mScore) return -1; in compare()
80 if (o1.mScore < o2.mScore) return 1; in compare()
DAutoCorrectionUtils.java43 final int autoCorrectionSuggestionScore = suggestion.mScore; in suggestionExceedsThreshold()
/packages/apps/TV/tests/unit/src/com/android/tv/recommendation/
DRoutineWatchEvaluatorTest.java36 private final double mScore; field in RoutineWatchEvaluatorTest.ScoredItem
41 this.mScore = RoutineWatchEvaluator.calculateTitleMatchScore(base, text); in ScoredItem()
46 return Double.compare(mScore, scoredItem.mScore); in compareTo()
51 return mBase + " scored with " + mText + " is " + mScore; in toString()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggest.java327 if (suggestionsContainer.get(i).mScore < SUPPRESS_SUGGEST_THRESHOLD) { in getSuggestedWordsForBatchInput()
360 typedWord, cur.toString(), cur.mScore); in getSuggestionsInfoListWithDebugInfo()
364 Locale.ROOT, "%d (%4.2f), %s", cur.mScore, normalizedScore, in getSuggestionsInfoListWithDebugInfo()
367 scoreInfoString = Integer.toString(cur.mScore); in getSuggestionsInfoListWithDebugInfo()
430 wordInfo.mScore, wordInfo.mKindAndFlags, in getTransformedSuggestedWordInfo()
DSuggestedWords.java269 public final int mScore; field in SuggestedWords.SuggestedWordInfo
301 mScore = score; in SuggestedWordInfo()
318 mScore = SuggestedWordInfo.MAX_SCORE; in SuggestedWordInfo()
/packages/apps/Camera2/src/com/android/camera/stats/
DCamera2FaceProxy.java28 private final int mScore; field in Camera2FaceProxy
32 mScore = score; in Camera2FaceProxy()
45 return mScore; in getScore()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
Dsuggested_word.h45 : mCodePoints(codePoints, codePoints + codePointCount), mScore(score), in SuggestedWord()
58 return mScore; in getScore()
77 int mScore; variable
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidWordLevelSpellCheckerSession.java366 final int bestScore = suggestionResults.first().mScore; in getResult()