Searched defs:score (Results 1 - 25 of 31) sorted by last modified time

12

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java2057 NetworkCapabilities nc, LinkProperties lp, int score, NetworkMisc misc) {
2058 super(l, c, TAG, ni, nc, lp, score, misc);
2056 DcNetworkAgent(Looper l, Context c, String TAG, NetworkInfo ni, NetworkCapabilities nc, LinkProperties lp, int score, NetworkMisc misc) argument
H A DDctController.java716 protected void needNetworkFor(NetworkRequest networkRequest, int score) { argument
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp386 int score = mBufferTail - tick - MEASURE_BASE; local
387 if (mLatencyScore > score || mLatencyScore <= 0) {
388 mLatencyScore = score;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java2648 sb.append(" sc=").append(mWifiInfo.score);
2864 sb.append(" sc=").append(mWifiInfo.score);
4091 // Polling has completed, hence we wont have a score anymore
4107 int score = 56; // Starting score, temporarily hardcoded in between 50 and 60
4131 * otherwise we end up lowering the score based on 5GHz values
4202 score = score - 5;
4222 score = score
5325 needNetworkFor(NetworkRequest networkRequest, int score) argument
5348 needNetworkFor(NetworkRequest networkRequest, int score) argument
7783 WifiNetworkAgent(Looper l, Context c, String TAG, NetworkInfo ni, NetworkCapabilities nc, LinkProperties lp, int score) argument
[all...]
/frameworks/minikin/include/minikin/
H A DLineBreaker.h196 float score; // best score found for this break member in struct:android::LineBreaker::Candidate
/frameworks/minikin/libs/minikin/
H A DFontCollection.cpp102 // 2. If a font matches both language and script, it gets a score of 4.
103 // 3. If a font matches just language, it gets a score of 2.
104 // 4. Matching the "compact" or "elegant" variant adds one to the score.
105 // 5. Highest score wins, with ties resolved to the first font.
124 int score = lang.match(family->lang()) * 2; local
126 score++;
128 if (score > bestScore) {
129 bestScore = score;
H A DFontFamily.cpp138 int score = abs(style1.getWeight() - style2.getWeight()); local
140 score += 2;
142 return score;
H A DLineBreaker.cpp35 // constants are larger than any reasonable actual width score.
376 float jScore = mCandidates[j].score;
380 // compute width score for line
402 float score = jScore + widthScore + additionalPenalty; local
403 if (score <= best) {
404 best = score;
408 mCandidates[i].score = best + mCandidates[i].penalty + mLinePenalty;
412 ALOGD("break %d: score=%g, prev=%d", i, mCandidates[i].score, mCandidates[i].prev);
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp236 etc1_uint32 score; // Lower is more accurate member in struct:__anon1451
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/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfiguration.java435 * - GOOD/LOW/BAD thresholds are used so as to calculate link score
504 * Boost given to RSSI on a home network for the purpose of calculating the score
532 public int score; // Debug only, indicate last score used for autojoin/cell-handover field in class:WifiConfiguration.Visibility
571 if (score != 0) {
572 sbuf.append("; ").append(score);
H A DWifiInfo.java157 public int score; field in class:WifiInfo
270 score = 0;
298 score = source.score;
554 append(", score: ").append(Integer.toString(score));
585 dest.writeInt(score);
616 info.score = in.readInt();
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java153 private int mCurrentPipeId; // basically, equivalent to the current score
1052 private void setScore(int score) { argument
1053 mScore = score;
1055 mScoreField.setText(DEBUG_IDDQD ? "??" : String.valueOf(score));
/frameworks/base/services/core/java/com/android/server/
H A DCommonTimeManagementService.java214 public InterfaceScoreRule(String prefix, byte score) { argument
216 mScore = score;
H A DConnectivityService.java1964 Integer score = (Integer) msg.obj;
1965 if (score != null) updateNetworkScore(nai, score.intValue());
2020 // If score has changed, rebroadcast to NetworkFactories. b/17726566
2134 // because they lost all their requests or because their score isn't good)
4055 private void sendUpdatedScoreToFactories(NetworkRequest networkRequest, int score) { argument
4056 if (VDBG) log("sending new Min Network Score(" + score + "): " + networkRequest.toString());
4058 nfi.asyncChannel.sendMessage(android.net.NetworkFactory.CMD_REQUEST_NETWORK, score, 0,
4173 // Handles a network appearing or improving its score.
4192 // If you need to handle decreases in score, us
4565 updateNetworkScore(NetworkAgentInfo nai, int score) argument
[all...]
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNetworkAgentInfo.java43 * interested in using it. Default sort order is descending by score.
75 // for the default network connection, the one with the higher score should be chosen.
142 // This represents the last score received from the NetworkAgent.
156 // score. A non-empty list indicates that if this Network was validated it is lingered.
167 LinkProperties lp, NetworkCapabilities nc, int score, Context context, Handler handler,
175 currentScore = score;
203 // TODO: We may want to refactor this into a NetworkScore class that takes a base score from
205 // score. The NetworkScore class would provide a nice place to centralize score constants
209 // unvalidated, give it the maximum score
166 NetworkAgentInfo(Messenger messenger, AsyncChannel ac, Network net, NetworkInfo info, LinkProperties lp, NetworkCapabilities nc, int score, Context context, Handler handler, NetworkMisc misc, NetworkRequest defaultRequest, ConnectivityService connService) argument
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java54 int score; field in class:NotificationRecord
87 public NotificationRecord(StatusBarNotification sbn, int score) argument
90 this.score = score;
127 pw.println(prefix + " pri=" + notification.priority + " score=" + sbn.getScore());
229 "NotificationRecord(0x%08x: pkg=%s user=%s id=%d tag=%s score=%d key=%s: %s)",
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DConnectivityServiceTest.java317 protected void needNetworkFor(NetworkRequest networkRequest, int score) { argument
318 super.needNetworkFor(networkRequest, score);
980 // own NetworkRequest during startup, just bump up the score to cancel out the
/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/base/libs/androidfw/
H A DResourceTypes.cpp2015 const int score = ((localeScript[0] != 0) ? 1 : 0) + local
2021 return score - oScore;
/frameworks/base/core/java/android/gesture/
H A DPrediction.java22 public double score; field in class:Prediction
26 score = predictionScore;
/frameworks/base/core/java/android/hardware/
H A DCamera.java1765 public int score; field in class:Camera.Face
/frameworks/base/core/java/android/hardware/camera2/params/
H A DFace.java72 * @param score Confidence level between {@value #SCORE_MIN}-{@value #SCORE_MAX}.
88 public Face(Rect bounds, int score, int id, argument
91 if (score < SCORE_MIN || score > SCORE_MAX) {
103 mScore = score;
123 * @param score Confidence level between {@value #SCORE_MIN}-{@value #SCORE_MAX}.
132 public Face(Rect bounds, int score) { argument
133 this(bounds, score, ID_UNSUPPORTED,
249 return String.format("{ bounds: %s, score: %s, id: %d, " +
/frameworks/base/core/java/android/net/
H A DConnectivityManager.java1973 NetworkCapabilities nc, int score, NetworkMisc misc) {
1975 return mService.registerNetworkAgent(messenger, ni, lp, nc, score, misc);
1972 registerNetworkAgent(Messenger messenger, NetworkInfo ni, LinkProperties lp, NetworkCapabilities nc, int score, NetworkMisc misc) argument
H A DNetworkAgent.java89 /* centralize place where base network score, and network score scaling, will be
96 * network score.
97 * obj = network score Integer
159 NetworkCapabilities nc, LinkProperties lp, int score) {
160 this(looper, context, logTag, ni, nc, lp, score, null);
164 NetworkCapabilities nc, LinkProperties lp, int score, NetworkMisc misc) {
176 new LinkProperties(lp), new NetworkCapabilities(nc), score, misc);
297 * Called by the bearer code when it has a new score for this network.
299 public void sendNetworkScore(int score) { argument
158 NetworkAgent(Looper looper, Context context, String logTag, NetworkInfo ni, NetworkCapabilities nc, LinkProperties lp, int score) argument
163 NetworkAgent(Looper looper, Context context, String logTag, NetworkInfo ni, NetworkCapabilities nc, LinkProperties lp, int score, NetworkMisc misc) argument
[all...]

Completed in 1190 milliseconds

12