Searched refs:candidate (Results 1 - 23 of 23) sorted by relevance

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiAutoJoinController.java351 * If not associated, and the candidate will always be better
352 * For instance if the candidate is a home network versus an unknown public wifi,
357 private int compareNetwork(WifiConfiguration candidate, argument
359 if (candidate == null)
369 if (candidate.configKey(true).equals(currentNetwork.configKey(true))) {
374 logDbg("compareNetwork will compare " + candidate.configKey()
377 int order = compareWifiConfigurations(currentNetwork, candidate);
393 + " over " + candidate.configKey()
398 && candidate.configKey().equals(lastSelectedConfiguration)) {
399 // candidate i
[all...]
H A DWifiServiceImpl.java1476 String candidate = " ";
1477 if (r.isAutoJoinCandidate > 0) candidate = "+";
1483 candidate,
H A DWifiStateMachine.java3164 // In associated more, lazy roam will be looking for 5GHz roam candidate
3194 // In associated more, lazy roam will be looking for 5GHz roam candidate
8862 ScanResult candidate = (ScanResult)message.obj;
8864 if (candidate != null && candidate.is5GHz()) {
8866 bssid = candidate.BSSID;
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
H A DClusterManager.java196 // assign each candidate to a semantic cluster and check if new semantic
198 for (LocationCluster candidate : mLocationClusters) {
199 if (candidate.hasSemanticId() ||
200 candidate.hasSemanticClusterId() ||
201 !candidate.passThreshold(SEMANTIC_CLUSTER_THRESHOLD)) {
209 float distance = cluster.distanceToCluster(candidate);
219 // if candidate doesn't belong to any semantic cluster, create a new
222 candidate.generateSemanticId(mSemanticClusterCount++);
223 mSemanticClusters.add(candidate);
225 candidate
[all...]
/frameworks/base/core/java/android/app/
H A DApplicationErrorReport.java171 String candidate = null;
175 candidate = pm.getInstallerPackageName(packageName);
180 if (candidate != null) {
181 result = getErrorReportReceiver(pm, packageName, candidate);
190 candidate = SystemProperties.get(SYSTEM_APPS_ERROR_RECEIVER_PROPERTY);
191 result = getErrorReportReceiver(pm, packageName, candidate);
198 candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY);
199 return getErrorReportReceiver(pm, packageName, candidate);
207 * @param receiverPackage candidate package to receive the error
/frameworks/compile/mclinker/lib/LD/
H A DIdenticalCodeFolding.cpp166 CandidateMap::iterator candidate, candidateEnd = candidate_map.end(); local
167 for (candidate = candidate_map.begin(); candidate != candidateEnd;
168 ++candidate) {
170 (funcptr_access_set.count(candidate->first) == 0)) {
172 m_KeptSections[candidate->first] = ObjectAndId(*obj, index);
174 FoldingCandidate(candidate->first, candidate->second, *obj));
176 } // for each possible candidate
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DAudioPort.cpp374 uint32_t candidate; local
376 candidate = mSamplingRates[i];
377 if (candidate == samplingRate) {
379 *updatedSamplingRate = candidate;
383 // candidate < desired
384 if (candidate < samplingRate) {
385 if (maxBelow < 0 || candidate > mSamplingRates[maxBelow]) {
388 // candidate > desired
390 if (minAbove < 0 || candidate < mSamplingRates[minAbove]) {
398 candidate
[all...]
/frameworks/base/services/core/java/com/android/server/policy/
H A DEnableAccessibilityController.java237 AccessibilityServiceInfo candidate = services.get(i);
238 if ((candidate.flags & AccessibilityServiceInfo
241 service = candidate;
/frameworks/base/core/tests/coretests/src/android/view/
H A DFocusFinderTest.java238 * A non-candidate (even a much closer one) is always a worse choice
239 * than a real candidate.
250 Rect candidate = new Rect(src);
251 candidate.offset(-(4 * src.width()), 0);
252 assertDirectionIsCandidate(View.FOCUS_LEFT, src, candidate);
254 assertBetterCandidate(View.FOCUS_LEFT, src, candidate, nonCandidate);
320 * down (and not those next to but still a candidate because
457 new Rect(0, 0, 20, 1)); // candidate
462 new Rect(0, -1, 20, 0)); // candidate
467 new Rect(-1, 0, 0, 20)); // candidate
[all...]
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecController.java447 final Integer candidate = candidates.remove(0);
453 if (sendPollMessage(sourceAddress, candidate, retryCount)) {
454 allocated.add(candidate);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s168 ;// out the candidate MV if neccesary
182 ;// Store the candidate MV's into the pDstMVPredME,
192 ; Find the median of the 3 candidate MV's
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
H A DomxVCM4P2_FindMVpred_s.s168 ;// out the candidate MV if neccesary
182 ;// Store the candidate MV's into the pDstMVPredME,
192 ; Find the median of the 3 candidate MV's
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityInteractionClient.java791 AccessibilityNodeInfo candidate = infos.get(j);
792 if (root.getParentNodeId() == candidate.getSourceNodeId()) {
793 root = candidate;
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java308 final ImeSubtypeListItem candidate = mImeSubtypeList.get(candidateIndex);
309 // Skip if searching inside the current IME only, but the candidate is not
311 if (onlyCurrentIme && !imi.equals(candidate.mImi)) {
314 return candidate;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExprModel.java189 String candidate = cnt == 0 ? baseName : baseName + cnt;
190 if (!mImports.containsKey(candidate)) {
191 return addImport(candidate, type, null);
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
H A DLayoutBinderWriter.kt62 var candidate = base
64 while (usedFieldNames[scope].contains(candidate)) {
66 candidate = base + i
68 usedFieldNames[scope].add(candidate)
69 return candidate
/frameworks/base/services/core/java/com/android/server/
H A DTextServicesManagerService.java467 SpellCheckerSubtype candidate = null;
474 } else if (candidate == null) {
478 candidate = scs;
493 return candidate;
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java823 ActivityRecord candidate = mActivities.get(activityNdx);
824 if (candidate.finishing) {
827 if (candidate.realActivity.equals(realActivity)) {
828 return candidate;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java743 public boolean accept(File candidate) {
744 return candidate.getName().startsWith(prefix);
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncManager.java2654 if (isLoggable) Log.v(TAG, "sort the candidate operations, size " + operations.size());
2658 final SyncOperation candidate = operations.get(i);
2659 final boolean candidateIsInitialization = candidate.isInitialization();
2682 if (activeOp.isConflict(candidate)) {
2695 Log.v(TAG, "candidate " + (i + 1) + " of " + N + ": " + candidate);
2714 } else if (candidate.isExpedited() && !conflict.mSyncOperation.isExpedited()
2726 // dispatch candidate
2727 } else if (candidate.isExpedited() && oldestNonExpeditedRegular != null
2730 // candidate does
[all...]
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1523 int candidate = locations[u] + value;
1524 if (candidate > locations[v]) {
1525 locations[v] = candidate;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1418 int candidate = locations[u] + value;
1419 if (candidate > locations[v]) {
1420 locations[v] = candidate;
/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. ...

Completed in 3019 milliseconds