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

  /packages/apps/DeskClock/src/com/android/deskclock/data/
CityListener.java 25 void citiesChanged(List<City> oldCities, List<City> newCities);
CityModel.java 41 * All {@link City} data is accessed via this model.
63 /** List of listeners to invoke upon world city list change */
66 /** Maps city ID to city instance. */
67 private Map<String, City> mCityMap;
69 /** List of city instances in display order. */
70 private List<City> mAllCities;
72 /** List of selected city instances in display order. */
73 private List<City> mSelectedCities;
75 /** List of unselected city instances in display order. *
    [all...]
City.java 25 * A read-only domain object representing a city of the world and associated time information. It
28 public final class City {
30 /** A unique identifier for the city. */
39 /** The display name of the city. */
42 /** The phonetic name of the city used to order cities for display. */
45 /** The TimeZone corresponding to the city. */
57 City(String id, int index, String indexString, String name, String phoneticName, TimeZone tz) {
74 * @return the city name converted to upper case
84 * @return the city name converted to upper case with all special characters removed
95 * to match against the upper case city nam
    [all...]
CityDAO.java 40 * This class encapsulates the transfer of data between {@link City} domain objects and their
45 /** Regex to match numeric index values when parsing city names. */
51 /** Prefix for a key to a preference that stores the id of a selected city. */
57 * @param cityMap maps city ids to city instances
58 * @return the list of city ids selected for display by the user
60 static List<City> getSelectedCities(SharedPreferences prefs, Map<String, City> cityMap) {
62 final List<City> selectedCities = new ArrayList<>(size);
66 final City city = cityMap.get(id) local
125 final City city = createCity(id, cityParts[0], cityParts[1]); local
    [all...]
DataModel.java 170 /** The model from which city data are fetched. */
330 public List<City> getAllCities() {
336 * @return a city representing the user's home timezone
338 public City getHomeCity() {
346 public List<City> getUnselectedCities() {
354 public List<City> getSelectedCities() {
362 public void setSelectedCities(Collection<City> cities) {
370 public Comparator<City> getCityIndexComparator() {
392 * @param cityListener listener to be notified when the world city list changes
400 * @param cityListener listener that no longer needs to be notified of world city list change
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
example_test.go 15 City, State string
47 // <City>Hanga Roa</City>
55 City, State string
87 // <City>Hanga Roa</City>
103 City, State string
129 <City>Hanga Roa</City>
  /prebuilts/go/linux-x86/src/encoding/xml/
example_test.go 15 City, State string
47 // <City>Hanga Roa</City>
55 City, State string
87 // <City>Hanga Roa</City>
103 City, State string
129 <City>Hanga Roa</City>
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalAppWidgetCityViewsFactory.java 31 import com.android.deskclock.data.City;
61 private City mHomeCity;
63 private List<City> mCities = Collections.emptyList();
112 final City left = leftIndex == -1 ? mHomeCity :
114 final City right = rightIndex < mCities.size() ? mCities.get(rightIndex) : null;
180 private void update(RemoteViews rv, City city, int clockId, int labelId, int dayId) {
187 rv.setString(clockId, "setTimeZone", city.getTimeZone().getID());
188 rv.setTextViewText(labelId, city.getName());
190 // Compute if the city week day matches the weekday of the current timezone
    [all...]
DigitalAppWidgetProvider.java 45 import com.android.deskclock.data.City;
102 * Intent action used for refreshing a world city display when any of them changes days or when
104 * only visible when the world city day-of-week differs from the default TimeZone's day-of-week.
266 // Insufficient space; hide the world city list.
269 // Set an adapter on the world city list. That adapter connects to a Service via intent.
276 // Tapping on the widget opens the city selection activity (if not on the lock screen).
352 final List<City> selectedCities = dm.getSelectedCities();
366 for (City city : selectedCities) {
367 zones.add(city.getTimeZone())
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitySelectionActivity.java 48 import com.android.deskclock.data.City;
70 * <li>Digital Widget -> Tap any city clock</li>
195 * City 1 (alphabetically first)
196 * City 2 (alphabetically second)
198 * A City A1 (alphabetically first starting with A)
199 * City A2 (alphabetically second starting with A)
201 * B City B1 (alphabetically first starting with B)
202 * City B2 (alphabetically second starting with B)
209 * A City A1 (alphabetically first starting with A)
210 * City A2 (alphabetically second starting with A
343 final City city = getItem(position); local
405 final City city = (City) b.getTag(); local
440 final City city = getItem(position); local
593 final City city = getItem(position); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
ClockFragment.java 45 import com.android.deskclock.data.City;
244 * Long pressing over the city list starts the screen saver.
385 // Retrieve the city to bind.
386 final City city; local
389 city = getHomeCity();
393 city = getCities().get(position - positionAdjuster);
395 ((CityViewHolder) holder).bind(mContext, city, position, mIsPortrait);
414 private City getHomeCity() {
418 private List<City> getCities()
    [all...]
  /external/ImageMagick/www/api/
morphology.php 264 <dd> Manhattan:[{radius}][x{scale}[!]] Manhattan Distance (also known as Rectilinear, City Block, or the Taxi Cab distance metric), it is the distance needed when you can only travel in horizontal or vertical directions only. It is the distance a 'Rook' in chess would have to travel, and results in a diamond like distances, where diagonals are further than expected. </dd>
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1_test.go 644 RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 7}, Value: "City"}},
656 RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 7}, Value: "City"}},
    [all...]
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1_test.go 644 RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 7}, Value: "City"}},
656 RelativeDistinguishedNameSET{AttributeTypeAndValue{Type: ObjectIdentifier{2, 5, 4, 7}, Value: "City"}},
    [all...]
  /external/brotli/js/
decode.min.js     [all...]

Completed in 287 milliseconds