HomeSort by relevance Sort by last modified time
    Searched refs:unselected (Results 1 - 8 of 8) sorted by null

  /packages/apps/DeskClock/src/com/android/deskclock/data/
CityModel.java 75 /** List of unselected city instances in display order. */
107 // Create a set of selections to identify the unselected cities.
113 // Combine selected and unselected cities into a single list.
141 // Create a set of selections to identify the unselected cities.
146 final List<City> unselected = new ArrayList<>(all.size() - selectedSet.size()); local
149 unselected.add(city);
153 // Sort the unselected cities according by the user's preferred sort.
154 Collections.sort(unselected, getCitySortComparator());
155 mUnselectedCities = Collections.unmodifiableList(unselected);