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

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
suggested_word.h 45 : mCodePoints(codePoints, codePoints + codePointCount), mScore(score),
58 return mScore;
77 int mScore;
  /frameworks/base/core/java/android/hardware/camera2/params/
Face.java 54 private final int mScore;
103 mScore = score;
168 return mScore;
251 mBounds, mScore, mId, mLeftEye, mRightEye, mMouth);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
SuggestionResults.java 79 if (o1.mScore > o2.mScore) return -1;
80 if (o1.mScore < o2.mScore) return 1;
AutoCorrectionUtils.java 41 final int autoCorrectionSuggestionScore = suggestion.mScore;
DistracterFilterCheckingExactMatchesAndSuggestions.java 274 final int suggestionScore = suggestion.mScore;
  /frameworks/base/core/java/android/net/
NetworkFactory.java 101 private int mScore;
175 if (VDBG) log(" my score=" + mScore + ", my filter=" + mCapabilityFilter);
189 mScore = score;
222 if (n.requested == false && n.score < mScore &&
228 (n.score > mScore || n.request.networkCapabilities.satisfiedByNetworkCapabilities(
  /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++;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 242 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,
SuggestedWords.java 248 public final int mScore;
276 mScore = score;
292 mScore = SuggestedWordInfo.MAX_SCORE;
423 newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKindAndFlags,
  /frameworks/base/services/core/java/com/android/server/
CommonTimeManagementService.java 213 public final byte mScore;
216 mScore = score;
307 thisScore = r.mScore;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java 345 Log.i(TAG, "" + suggestedWordInfo.mScore + " " + suggestedWordInfo.mWord);
368 final int bestScore = suggestionResults.first().mScore;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
LLand.java 133 private int mScore;
315 mScore = score;
320 setScore(mScore + incr);

Completed in 172 milliseconds