Searched refs:mScores (Results 1 – 3 of 3) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
D | BinaryDictionary.java | 54 private final int[] mScores = new int[MAX_WORDS]; field in BinaryDictionary 145 mScores); in getWords() 148 if (mScores[j] < 1) break; in getWords() 155 callback.addWord(mOutputChars, start, len, mScores[j], mDicTypeId, in getWords()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/ |
D | AndroidSpellCheckerService.java | 223 private final int[] mScores; field in AndroidSpellCheckerService.SuggestionsGatherer 242 mScores = new int[mMaxLength]; in SuggestionsGatherer() 248 final int positionIndex = Arrays.binarySearch(mScores, 0, mLength, score); in addWord() 289 System.arraycopy(mScores, insertIndex, mScores, insertIndex + 1, copyLen); in addWord() 292 System.arraycopy(mScores, 1, mScores, 0, insertIndex); in addWord() 296 mScores[insertIndex] = score; in addWord() 323 Log.i(TAG, "" + mScores[i] + " " + mSuggestions.get(i)); in getResults() 345 final int bestScore = mScores[mLength - 1]; in getResults()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/ |
D | ContactMatcher.java | 241 private final HashMap<Long, MatchScore> mScores = new HashMap<Long, MatchScore>(); field in ContactMatcher 249 MatchScore matchingScore = mScores.get(contactId); in getMatchingScore() 259 mScores.put(contactId, matchingScore); in getMatchingScore() 350 mScores.clear(); in clear()
|