Home
last modified time | relevance | path

Searched refs:candidateList (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/widget/
DRadioButtonPickerFragment.java159 final List<? extends CandidateInfo> candidateList = getCandidates(); in updateCandidates() local
160 if (candidateList != null) { in updateCandidates()
161 for (CandidateInfo info : candidateList) { in updateCandidates()
188 if (candidateList != null) { in updateCandidates()
189 for (CandidateInfo info : candidateList) { in updateCandidates()
/packages/apps/Settings/src/com/android/settings/display/
DScreenTimeoutSettings.java178 final List<? extends CandidateInfo> candidateList = getCandidates(); in updateCandidates() local
179 if (candidateList == null) { in updateCandidates()
183 for (CandidateInfo info : candidateList) { in updateCandidates()
192 if (!candidateList.isEmpty() && (selectedTimeout > maxTimeout)) { in updateCandidates()
196 (RadioButtonPreference) screen.getPreference(candidateList.size() - 1); in updateCandidates()
/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DThemeItem.java52 private static List<ThemeItem> createThemeList(final String... candidateList) { in createThemeList() argument
58 for (final String name : candidateList) { in createThemeList()
/packages/apps/Settings/src/com/android/settings/gestures/
DSystemNavigationGestureSettings.java103 final List<? extends CandidateInfo> candidateList = getCandidates(); in updateCandidates() local
104 if (candidateList == null) { in updateCandidates()
107 for (CandidateInfo info : candidateList) { in updateCandidates()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiConnectivityManagerTest.java440 public WifiConfiguration answer(List<WifiCandidates.Candidate> candidateList) { in mockWifiNetworkSelector()
441 if (candidateList == null || candidateList.size() == 0) { in mockWifiNetworkSelector()
1580 List<WifiCandidates.Candidate> candidateList = new ArrayList<>(); in testRetryConnectionOnFailure() local
1581 candidateList.add(mCandidate1); in testRetryConnectionOnFailure()
1582 candidateList.add(otherCandidate); in testRetryConnectionOnFailure()
1584 anyBoolean())).thenReturn(candidateList); in testRetryConnectionOnFailure()
1629 public boolean matches(List<WifiCandidates.Candidate> candidateList) { in matches() argument
1630 return candidateList.size() == mSize; in matches()
1646 List<WifiCandidates.Candidate> candidateList = new ArrayList<>(); in testRetryConnectionOnFailureCacheTimeout() local
1647 candidateList.add(mCandidate1); in testRetryConnectionOnFailureCacheTimeout()
[all …]