Searched refs:bestScore (Results 1 - 11 of 11) sorted by relevance

/frameworks/av/media/libmediaplayerservice/
H A 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/
H A DCommonTimeManagementService.java266 byte bestScore = -1;
303 if (thisScore <= bestScore)
312 bestScore = thisScore;
345 byte newPrio = (bestScore > 0)
346 ? (byte)(bestScore * BASE_SERVER_PRIO)
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java197 final ScoreEntry bestScore = scoreboard.get(lang);
198 if (bestScore == null) {
201 bestScore.updateIfBetter(score, i);
/frameworks/support/compat/src/main/java/androidx/core/graphics/
H A DTypefaceCompatBaseImpl.java56 int bestScore = Integer.MAX_VALUE; // smaller is better
62 if (best == null || bestScore > score) {
64 bestScore = score;
/frameworks/av/packages/MediaComponents/src/com/android/media/subtitle/
H A DSubtitleController.java217 int bestScore = -1;
255 if (score > bestScore) {
256 bestScore = score;
/frameworks/base/media/java/android/media/
H A DSubtitleController.java213 int bestScore = -1;
251 if (score > bestScore) {
252 bestScore = score;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DPasspointNetworkEvaluator.java178 int bestScore = Integer.MIN_VALUE;
189 if (score > bestScore) {
191 bestScore = score;
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp301 etc1_uint32 bestScore = ~0; local
313 if (score >= bestScore) {
318 if (score >= bestScore) {
323 if (score < bestScore) {
324 bestScore = score;
331 return bestScore;
/frameworks/support/media/src/main/java/androidx/media/subtitle/
H A DSubtitleController.java227 int bestScore = -1;
263 if (score > bestScore) {
264 bestScore = score;
/frameworks/av/media/libstagefright/
H A DVideoFrameScheduler.cpp228 int64_t bestScore; local
259 if (i == 0 || score > bestScore) {
260 bestScore = score;
/frameworks/minikin/libs/minikin/
H A DFontCollection.cpp266 uint32_t bestScore = kUnsupportedFontScore; local
276 if (score > bestScore) {
277 bestScore = score;

Completed in 269 milliseconds