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

  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
UnionPattern.java 120 XObject bestScore = null;
129 if (null == bestScore)
130 bestScore = score;
131 else if (score.num() > bestScore.num())
132 bestScore = score;
136 if (null == bestScore)
138 bestScore = NodeTest.SCORE_NONE;
141 return bestScore;
  /frameworks/base/policy/src/com/android/internal/policy/impl/
AccountUnlockScreen.java 240 int bestScore = 0;
258 if (score > bestScore) {
260 bestScore = score;
261 } else if (score == bestScore) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocationClustering.java 221 float bestScore = Float.MAX_VALUE;
300 if (score < bestScore) {
301 bestScore = score;
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 301 etc1_uint32 bestScore = ~0;
313 if (score >= bestScore) {
318 if (score >= bestScore) {
323 if (score < bestScore) {
324 bestScore = score;
331 return bestScore;
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
etc1.cpp 301 etc1_uint32 bestScore = ~0;
313 if (score >= bestScore) {
318 if (score >= bestScore) {
323 if (score < bestScore) {
324 bestScore = score;
331 return bestScore;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 345 final int bestScore = mScores[mLength - 1];
349 mOriginalText, bestSuggestion.toString(), bestScore);
352 Log.i(TAG, "Best suggestion : " + bestSuggestion + ", score " + bestScore);
    [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch.java 868 int score, bestScore;
897 bestScore = diff_cleanupSemanticScore(equality1, edit)
907 if (score >= bestScore) {
908 bestScore = score;
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 778 milliseconds