Searched defs:score (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/gesture/
H A DPrediction.java22 public double score; field in class:Prediction
26 score = predictionScore;
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java48 public final int score; field in class:StatusBarNotification
53 public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score, argument
55 this(pkg, id, tag, uid, initialPid, score, notification, UserHandle.OWNER);
58 public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score, argument
68 this.score = score;
84 this.score = in.readInt();
101 out.writeInt(this.score);
127 this.score, this.notification.clone(), this.user);
132 return "StatusBarNotification(pkg=" + pkg + " id=" + id + " tag=" + tag + " score
[all...]
/frameworks/base/services/java/com/android/server/
H A DCommonTimeManagementService.java220 public InterfaceScoreRule(String prefix, byte score) { argument
222 mScore = score;
H A DNotificationManagerService.java322 final int score; field in class:NotificationManagerService.NotificationRecord
326 int userId, int score, Notification notification)
334 this.score = score;
343 pw.println(prefix + " score=" + this.score);
366 + " score=" + score
945 // 1. initial score: buckets of 10, around the app
946 int score
325 NotificationRecord(String pkg, String tag, int id, int uid, int initialPid, int userId, int score, Notification notification) argument
[all...]
/frameworks/ex/variablespeed/jni/
H A Dsola_time_scaler.cc31 // Returns a cross-correlation score for the specified buffers.
36 int score = 0; local
39 // Increment the score if the sign bits match.
40 score += ((bit_cast<int32>(*buffer1++) ^ bit_cast<int32>(*buffer2++)) >= 0)
43 return score;
275 // find the best correlation score, working from the center out.
282 int score; local
284 score = analyzer_->Correlate(input_pointer,
287 if (score > best_score) {
288 best_score = score;
[all...]
/frameworks/base/voip/jni/rtp/
H A DAudioGroup.cpp384 int score = mBufferTail - tick - MEASURE_BASE; local
385 if (mLatencyScore > score || mLatencyScore <= 0) {
386 mLatencyScore = score;
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp236 etc1_uint32 score; // Lower is more accurate member in struct:__anon1484
241 if (a->score > b->score) {
312 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG)); local
313 if (score >= bestScore) {
317 score += (etc1_uint32) (3 * square(decodedR - pixelR));
318 if (score >= bestScore) {
322 score += (etc1_uint32) square(decodedB - pixelB);
323 if (score < bestScore) {
324 bestScore = score;
338 int score = pCompressed->score; local
[all...]
/frameworks/base/core/java/android/hardware/
H A DCamera.java1396 public int score; field in class:Camera.Face

Completed in 2061 milliseconds