Searched refs:best (Results 1 - 13 of 13) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp35 Target* best = NULL, * ambiguity = NULL; local
41 if (best == NULL || highest < quality) {
43 best = *target;
51 if (best == NULL) {
57 pError = std::string("Ambiguous targets: \"") + best->name() + "\" and \"" +
62 return best;
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DNAIRealmElement.java54 int best = AuthMatch.None;
57 if (match > best) {
58 best = match;
59 if (best == AuthMatch.Exact) {
60 return best;
64 return best;
H A DNAIRealmData.java80 int best = AuthMatch.None;
83 if (match > best) {
84 best = match;
85 if (best == AuthMatch.Exact) {
86 return best;
90 return best;
/frameworks/minikin/libs/minikin/
H A DMeasurement.cpp102 size_t best = searchStart; local
112 best = i;
119 return best;
H A DLineBreaker.cpp269 // This break would create an overfull line, pick the best break and break there (greedy)
344 float best = SCORE_INFTY; local
369 if (jScore + bestHope >= best) continue;
395 if (score <= best) {
396 best = score;
400 mCandidates[i].score = best + mCandidates[i].penalty + mLinePenalty;
/frameworks/base/core/java/android/util/
H A DTimeUtils.java67 TimeZone best = null;
91 if (best == null) {
94 best = tz;
99 return best;
/frameworks/base/core/java/android/text/util/
H A DRfc822Tokenizer.java216 int best = 0;
230 best = i;
235 return best;
/frameworks/native/opengl/tests/hwc/
H A DhwcCommit.cpp1088 // point committed to (best) and the smallest point in which a commit
1093 // search. The upper value is only used when best is already equal
1102 Rational best(0, 1), minBad; // Current bounds for a binary search
1118 // Halve the difference between best and minBad.
1125 double mid = (double) best
1126 + ((double) minBad - (double) best) / 2.0;
1131 if (((lower == best) && (upper == minBad))) {
1132 return best;
1136 selected = (lower != best) ? lower : upper;
1157 // This is the best scal
[all...]
/frameworks/native/libs/binder/tests/
H A DbinderThroughputTest.cpp134 double best = (double)m_best / 1.0E6; local
137 cout << "average:" << average << "ms worst:" << worst << "ms best:" << best << "ms" << endl;
/frameworks/base/core/java/android/text/
H A DLayout.java1178 int best = lineStartOffset;
1179 float bestdist = Math.abs(getHorizontal(best, primary) - horiz);
1220 best = low;
1229 best = here;
1237 best = max;
1241 return best;
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs253 <li><a href="<?cs var:toroot ?>training/permissions/best-practices.html">
1192 <a href="<?cs var:toroot ?>training/best-ux.html">
1387 <a href="<?cs var:toroot ?>training/best-ui.html">
1710 <a href="<?cs var:toroot ?>training/best-user-input.html">
1808 <a href="<?cs var:toroot ?>training/best-background.html">
1877 <a href="<?cs var:toroot ?>training/best-performance.html">
2053 <a href="<?cs var:toroot ?>training/best-security.html">
2100 <a href="<?cs var:toroot ?>training/best-permissions-ids.html">
2191 <!-- End best Testing -->
2255 <!-- End best Publishin
[all...]
/frameworks/rs/api/
H A Drs_for_each.spec79 versions, it will also be used to provide hint on how to best iterate over
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerService.java2918 ResolveInfo best = null;
2928 if (best == null || cur.priority > best.priority) {
2929 best = cur;
2933 if (best != null) {
2934 return best.getComponentInfo().getComponentName();
5215 if (DEBUG_PREFERRED || debug) Slog.v(TAG, "Figuring out best match...");
5544 * Verification statuses are ordered from the worse to the best, except for
13500 // Ignored; we tried our best
13776 // Ignored; we tried our best
[all...]

Completed in 7857 milliseconds