HomeSort by relevance Sort by last modified time
    Searched refs:mScore (Results 1 - 9 of 9) sorted by null

  /frameworks/base/core/java/android/hardware/camera2/
Face.java 51 private final int mScore;
100 mScore = score;
165 return mScore;
248 mBounds, mScore, mId, mLeftEye, mRightEye, mMouth);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 403 if (suggestionsContainer.get(i).mScore < SUPPRESS_SUGGEST_THRESHOLD) {
431 typedWord, cur.toString(), cur.mScore);
435 Locale.ROOT, "%d (%4.2f)", cur.mScore, normalizedScore);
437 scoreInfoString = Integer.toString(cur.mScore);
451 if (o1.mScore > o2.mScore) return -1;
452 if (o1.mScore < o2.mScore) return 1;
480 return new SuggestedWordInfo(sb.toString(), wordInfo.mScore, wordInfo.mKind,
SuggestedWords.java 192 public final int mScore;
218 mScore = score;
267 candidates.remove(cur.mScore < previous.mScore ? i : j);
305 newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKind,
LatinIME.java     [all...]
  /development/samples/Snake/src/com/example/android/snake/
SnakeView.java 67 * mScore: Used to track the number of apples captured mMoveDelay: number of milliseconds
70 private long mScore = 0;
177 mScore = 0;
213 map.putLong("mScore", Long.valueOf(mScore));
249 mScore = icicle.getLong("mScore");
359 str = res.getString(R.string.mode_lose, mScore);
509 mScore++;
  /frameworks/base/services/java/com/android/server/
CommonTimeManagementService.java 216 public final byte mScore;
219 mScore = score;
310 thisScore = r.mScore;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AutoCorrectionUtils.java 87 final int autoCorrectionSuggestionScore = suggestion.mScore;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
JsonUtils.java 104 jsonWriter.name("score").value(wordInfo.mScore);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 329 suggestionStr.length(), suggestion.mScore);

Completed in 178 milliseconds