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/support/compat/java/android/support/v4/graphics/
DTypefaceCompatBaseImpl.java79 int bestScore = Integer.MAX_VALUE; // smaller is better in findBestEntry() local
85 if (bestEntry == null || bestScore > score) { in findBestEntry()
87 bestScore = score; in findBestEntry()
/frameworks/base/services/core/java/com/android/server/
DCommonTimeManagementService.java270 byte bestScore = -1; in reevaluateServiceState()
307 if (thisScore <= bestScore) in reevaluateServiceState()
316 bestScore = thisScore; in reevaluateServiceState()
349 byte newPrio = (bestScore > 0) in reevaluateServiceState()
350 ? (byte)(bestScore * BASE_SERVER_PRIO) in reevaluateServiceState()
/frameworks/base/core/java/com/android/internal/inputmethod/
DLocaleUtils.java197 final ScoreEntry bestScore = scoreboard.get(lang); in filterByLanguage() local
198 if (bestScore == null) { in filterByLanguage()
201 bestScore.updateIfBetter(score, i); in filterByLanguage()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
DPasspointNetworkEvaluator.java165 int bestScore = Integer.MIN_VALUE; in findBestNetwork() local
176 if (score > bestScore) { in findBestNetwork()
178 bestScore = score; in findBestNetwork()
/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.java213 int bestScore = -1; in getDefaultTrack() local
251 if (score > bestScore) { in getDefaultTrack()
252 bestScore = score; in getDefaultTrack()
/frameworks/av/media/libstagefright/wifi-display/
DVideoFormats.cpp489 uint32_t bestScore = 0; in PickBestFormat() local
517 if (first || score > bestScore) { in PickBestFormat()
518 bestScore = score; in PickBestFormat()
/frameworks/av/media/libstagefright/
DVideoFrameScheduler.cpp223 int64_t bestScore; in prime() local
254 if (i == 0 || score > bestScore) { in prime()
255 bestScore = score; in prime()
/frameworks/minikin/libs/minikin/
DFontCollection.cpp267 uint32_t bestScore = kUnsupportedFontScore; in getFamilyForChar() local
277 if (score > bestScore) { in getFamilyForChar()
278 bestScore = score; in getFamilyForChar()