Lines Matching full:cities
35 private static Map<String,City> cities = new HashMap<String,City>();
46 * Loads the city database. The cities must be stored in order by raw
90 cities.put(name, city);
96 * Returns the cities, ordered by name.
99 City[] ocities = new City[cities.size()];
100 Iterator<City> iter = cities.values().iterator();
110 * Returns the cities, ordered by offset, accounting for summer/daylight
115 City[] ocities = new City[cities.size()];
116 Iterator<City> iter = cities.values().iterator();
144 * Returns the cities, ordered by offset, accounting for summer/daylight
146 * since the cities are pre-sorted.
153 * Returns an Iterator over all cities, in raw offset order.
156 return cities.values().iterator();
160 * Returns the total number of cities.
163 return cities.size();