Home
last modified time | relevance | path

Searched refs:mScores (Results 1 – 2 of 2) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidSpellCheckerService.java226 private final int[] mScores; field in AndroidSpellCheckerService.SuggestionsGatherer
243 mScores = new int[mMaxLength]; in SuggestionsGatherer()
248 final int positionIndex = Arrays.binarySearch(mScores, 0, mLength, score); in addWord()
280 System.arraycopy(mScores, insertIndex, mScores, insertIndex + 1, copyLen); in addWord()
283 System.arraycopy(mScores, 1, mScores, 0, insertIndex); in addWord()
287 mScores[insertIndex] = score; in addWord()
316 Log.i(TAG, "" + mScores[i] + " " + mSuggestions.get(i)); in getResults()
338 final int bestScore = mScores[mLength - 1]; in getResults()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
DContactMatcher.java244 private final HashMap<Long, MatchScore> mScores = new HashMap<Long, MatchScore>(); field in ContactMatcher
252 MatchScore matchingScore = mScores.get(contactId); in getMatchingScore()
262 mScores.put(contactId, matchingScore); in getMatchingScore()
361 mScores.clear(); in clear()