HomeSort by relevance Sort by last modified time
    Searched refs:bestScore (Results 1 - 10 of 10) 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;
  /external/srec/srec/ca/
rec_nbes.c 41 CA_NBestList *CA_PrepareNBestList(CA_Recog *hRecog, int num, asr_int32_t *bestScore)
48 newList = (CA_NBestList*)srec_nbest_prepare_list(hRecog->recm, num, bestScore);
  /frameworks/base/services/java/com/android/server/
CommonTimeManagementService.java 279 byte bestScore = -1;
316 if (thisScore <= bestScore)
325 bestScore = thisScore;
358 byte newPrio = (bestScore > 0)
359 ? (byte)(bestScore * BASE_SERVER_PRIO)
  /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) {
  /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/apps/Gallery2/src/com/android/gallery3d/data/
LocationClustering.java 221 float bestScore = Float.MAX_VALUE;
300 if (score < bestScore) {
301 bestScore = score;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 348 final int bestScore = mScores[mLength - 1];
352 mOriginalText, bestSuggestion.toString(), bestScore);
355 Log.i(TAG, "Best suggestion : " + bestSuggestion + ", score " + bestScore);
    [all...]
  /external/srec/srec/include/
simapi.h     [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...]

Completed in 919 milliseconds