Searched defs:score (Results 1 - 12 of 12) 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/notification/
H A DNotificationScorer.java25 public int getScore(Notification notification, int score); argument
H A DDemoContactNotificationScorer.java38 * from 0 to 15 (assuming NOTIFICATION_PRIORITY_MULTIPLIER = 10) depending on the initial score, and
156 if (DBG) Slog.v(TAG, "priorityBumpMap: score before: " + incomingScore
157 + ", score after " + theScore + ".");
170 public int getScore(Notification notification, int score) { argument
173 return score;
184 if (hasStarredPriority) score = priorityBumpMap(score);
185 return score;
/frameworks/base/core/java/android/hardware/camera2/
H A DFace.java69 * @param score Confidence level between {@value #SCORE_MIN}-{@value #SCORE_MAX}.
85 public Face(Rect bounds, int score, int id, argument
88 if (score < SCORE_MIN || score > SCORE_MAX) {
100 mScore = score;
120 * @param score Confidence level between {@value #SCORE_MIN}-{@value #SCORE_MAX}.
129 public Face(Rect bounds, int score) { argument
130 this(bounds, score, ID_UNSUPPORTED,
246 return String.format("{ bounds: %s, score: %s, id: %d, " +
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java40 private final int score; field in class:StatusBarNotification
43 public StatusBarNotification(String pkg, int id, String tag, int uid, int initialPid, int score, argument
45 this(pkg, null, id, tag, uid, initialPid, score, notification, user);
50 int initialPid, int score, Notification notification, UserHandle user) {
51 this(pkg, basePkg, id, tag, uid, initialPid, score, notification, user,
56 int initialPid, int score, Notification notification, UserHandle user,
67 this.score = score;
86 this.score = in.readInt();
105 out.writeInt(this.score);
49 StatusBarNotification(String pkg, String basePkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user) argument
55 StatusBarNotification(String pkg, String basePkg, int id, String tag, int uid, int initialPid, int score, Notification notification, UserHandle user, long postTime) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.cpp184 size_t width, height, fps, score; local
191 score = width * height * fps * (!interlaced + 1);
196 && score >= width * height * fps * (!interlaced + 1)) {
513 uint32_t score = width * height * framesPerSecond; local
515 score *= 2;
518 if (first || score > bestScore) {
519 bestScore = score;
/frameworks/base/services/java/com/android/server/
H A DCommonTimeManagementService.java217 public InterfaceScoreRule(String prefix, byte score) { argument
219 mScore = score;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DImageGoodnessFilter.java16 // Takes sharpness score, rates the image good if above 10, bad otherwise
88 .addOutputPort("score", Signature.PORT_OPTIONAL, floatT)
138 float score = 0.0f;
139 score = computePictureScore(vectorAccel, sharpness, underExposure, overExposure,
141 if (scoreMean == 0) scoreMean = score;
142 else scoreMean = scoreMean * (1 - DECAY) + score * DECAY;
148 colorfulness, contrastRating, score);
156 if (score >= GREAT_SCORE) {
158 } else if (score >= GOOD_SCORE) {
160 } else if (score >
212 classifierComputeScore(float vectorAccel, float sharpness, float underExposure, float colorfulness, float contrast, float score) argument
248 subComputeScore(float sharpness, float underExposure, float overExposure, float contrastRating, float colorfulness, float brightness, float score) 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/native/opengl/libs/ETC1/
H A Detc1.cpp236 etc1_uint32 score; // Lower is more accurate member in struct:__anon1519
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/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp384 int score = mBufferTail - tick - MEASURE_BASE; local
385 if (mLatencyScore > score || mLatencyScore <= 0) {
386 mLatencyScore = score;
/frameworks/base/core/java/android/hardware/
H A DCamera.java1545 public int score; field in class:Camera.Face

Completed in 303 milliseconds