Home
last modified time | relevance | path

Searched refs:bestScore (Results 1 – 10 of 10) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
DMediaPlayerFactory.cpp83 float bestScore = 0.0; \
90 thisScore = v->scoreFactory(a, bestScore); \
91 if (thisScore > bestScore) { \
93 bestScore = thisScore; \
97 if (0.0 == bestScore) { \
/frameworks/base/services/core/java/com/android/server/inputmethod/
DLocaleUtils.java192 final ScoreEntry bestScore = scoreboard.get(lang); in filterByLanguage() local
193 if (bestScore == null) { in filterByLanguage()
196 bestScore.updateIfBetter(score, i); in filterByLanguage()
/frameworks/native/opengl/libs/ETC1/
Detc1.cpp301 etc1_uint32 bestScore = ~0; in chooseModifier() local
313 if (score >= bestScore) { in chooseModifier()
318 if (score >= bestScore) { in chooseModifier()
323 if (score < bestScore) { in chooseModifier()
324 bestScore = score; in chooseModifier()
331 return bestScore; in chooseModifier()
/frameworks/base/media/java/android/media/
DSubtitleController.java216 int bestScore = -1; in getDefaultTrack() local
254 if (score > bestScore) { in getDefaultTrack()
255 bestScore = score; in getDefaultTrack()
DThumbnailUtils.java195 final Comparator<File> bestScore = (a, b) -> { in createAudioThumbnail() local
199 final File bestFile = Arrays.asList(found).stream().max(bestScore).orElse(null); in createAudioThumbnail()
/frameworks/av/media/libstagefright/
DVideoFrameSchedulerBase.cpp225 int64_t bestScore; in prime() local
256 if (i == 0 || score > bestScore) { in prime()
257 bestScore = score; in prime()
/frameworks/base/services/core/java/com/android/server/timedetector/
DTimeDetectorStrategyImpl.java539 int bestScore = TELEPHONY_INVALID_SCORE; in findBestTelephonySuggestion() local
563 if (bestSuggestion == null || bestScore < candidateScore) { in findBestTelephonySuggestion()
565 bestScore = candidateScore; in findBestTelephonySuggestion()
566 } else if (bestScore == candidateScore) { in findBestTelephonySuggestion()
/frameworks/minikin/libs/minikin/
DFontCollection.cpp350 uint32_t bestScore = kUnsupportedFontScore; in getFamilyForChar() local
362 if (score != kUnsupportedFontScore && score >= bestScore) { in getFamilyForChar()
363 if (score > bestScore) { in getFamilyForChar()
365 bestScore = score; in getFamilyForChar()
/frameworks/base/core/java/android/provider/
DFontsContract.java704 int bestScore = normal.getMatchScore(bestFont.getStyle()); in buildTypeface() local
708 if (score < bestScore) { in buildTypeface()
710 bestScore = score; in buildTypeface()
/frameworks/base/graphics/java/android/graphics/
DTypeface.java356 int bestScore = normal.getMatchScore(bestFont.getStyle()); in createFromResources() local
360 if (score < bestScore) { in createFromResources()
362 bestScore = score; in createFromResources()