HomeSort by relevance Sort by last modified time
    Searched defs:city (Results 1 - 25 of 26) sorted by null

1 2

  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Address.java 20 public String city; field in class:Address
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Attraction.java 35 public String city; field in class:Attraction
44 Uri secondaryImageUrl, LatLng location, String city) {
51 this.city = city;
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Shared/src/main/java/com/example/android/xyztouristattractions/common/
Attraction.java 35 public String city; field in class:Attraction
44 Uri secondaryImageUrl, LatLng location, String city) {
51 this.city = city;
  /development/samples/browseable/XYZTouristAttractions/Shared/src/com.example.android.xyztouristattractions.common/
Attraction.java 35 public String city; field in class:Attraction
44 Uri secondaryImageUrl, LatLng location, String city) {
51 this.city = city;
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGeocoder.java 22 private String city; field in class:ShadowGeocoder
48 address.setLocality(city);
82 * @param city the city for the response
87 public void setSimulatedResponse(String address, String city, String state, String zip, String countryCode) {
89 this.city = city;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 36 public String city; field in class:PostalSplitter.Postal
45 city = values.getAsString(StructuredPostal.CITY);
55 values.put(StructuredPostal.CITY, city);
86 postal.street, postal.pobox, postal.neighborhood, postal.city,
103 final boolean hasCity = !TextUtils.isEmpty(postal.city);
109 // Second block: [region][ ][city][ ][neighborhood]
137 builder.append(postal.city);
169 final boolean hasCity = !TextUtils.isEmpty(postal.city);
    [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/data/
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...]
  /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...]
  /packages/apps/Dialer/java/com/android/dialer/oem/
CequintCallerIdManager.java 191 String city = getString(cursor, cursor.getColumnIndex(CITY_NAME)); local
206 String geoDescription = getGeoDescription(city, state, stateAbbr, country);
275 String city, String state, String stateAbbr, String country) {
278 if (TextUtils.isEmpty(city) && !TextUtils.isEmpty(state)) {
280 } else if (!TextUtils.isEmpty(city) && !TextUtils.isEmpty(stateAbbr)) {
281 geoDescription = city + ", " + stateAbbr;
  /developers/build/prebuilts/gradle/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 139 // If location unknown use test city, otherwise use closest city
140 String city = currentLocation == null ? TouristAttractions.TEST_CITY : local
143 showNotification(city,
313 * @param cityId The city to trigger the notification for
462 attractionData.putString(Constants.EXTRA_CITY, attraction.city);
  /developers/samples/android/wearable/wear/XYZTouristAttractions/Application/src/main/java/com/example/android/xyztouristattractions/service/
UtilityService.java 139 // If location unknown use test city, otherwise use closest city
140 String city = currentLocation == null ? TouristAttractions.TEST_CITY : local
143 showNotification(city,
313 * @param cityId The city to trigger the notification for
462 attractionData.putString(Constants.EXTRA_CITY, attraction.city);
  /development/samples/browseable/XYZTouristAttractions/Application/src/com.example.android.xyztouristattractions/service/
UtilityService.java 139 // If location unknown use test city, otherwise use closest city
140 String city = currentLocation == null ? TouristAttractions.TEST_CITY : local
143 showNotification(city,
313 * @param cityId The city to trigger the notification for
462 attractionData.putString(Constants.EXTRA_CITY, attraction.city);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 389 String city = id.substring(pos+1); local
390 return city.replace('_',' ');
401 String city = getCity(); local
414 ? "\t\t\"" + city + " Standard Time\"\r\n"
415 + "\t\t\"" + city + "-ST\"\r\n"
416 + "\t\t\"" + city + " Daylight Time\"\r\n"
417 + "\t\t\"" + city + "-DT\"\r\n"
422 + "\t\t\"" + city + " Time\"\r\n"
423 + "\t\t\"" + city + "-T\"\r\n"
424 + "\t\t\"" + city + "\"\r\n
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 388 String city = id.substring(pos+1); local
389 return city.replace('_',' ');
400 String city = getCity(); local
413 ? "\t\t\"" + city + " Standard Time\"\r\n"
414 + "\t\t\"" + city + "-ST\"\r\n"
415 + "\t\t\"" + city + " Daylight Time\"\r\n"
416 + "\t\t\"" + city + "-DT\"\r\n"
421 + "\t\t\"" + city + " Time\"\r\n"
422 + "\t\t\"" + city + "-T\"\r\n"
423 + "\t\t\"" + city + "\"\r\n
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TimeZoneGenericNames.java 84 // The format pattern such as "{0} Time", where {0} is the country or city.
88 // The format pattern such as "{1} Time ({0})", where {1} is the country and {0} is a city.
91 // The format pattern such as "{1} ({0})", where {1} is the metazone, and {0} is the country or city.
249 // use the exemplar city name
253 String city = _tznames.getExemplarLocationName(canonicalTzID); local
254 name = formatPattern(Pattern.REGION_FORMAT, city);
559 // Otherwise, use exemplar city name
    [all...]
  /external/icu/icu4c/source/i18n/
tzgnames.cpp 548 // use the exemplar city name.
553 UnicodeString city; local
554 fTimeZoneNames->getExemplarLocationName(tzCanonicalID, city);
555 fRegionFormat.format(city, name, status);
792 // Otherwise, use exemplar city name
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TimeZoneGenericNames.java 82 // The format pattern such as "{0} Time", where {0} is the country or city.
86 // The format pattern such as "{1} Time ({0})", where {1} is the country and {0} is a city.
89 // The format pattern such as "{1} ({0})", where {1} is the metazone, and {0} is the country or city.
247 // use the exemplar city name
251 String city = _tznames.getExemplarLocationName(canonicalTzID); local
252 name = formatPattern(Pattern.REGION_FORMAT, city);
557 // Otherwise, use exemplar city name
    [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
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...]
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-importexport/1.11.18/
aws-java-sdk-importexport-1.11.18.jar 
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-route53/1.11.18/
aws-java-sdk-route53-1.11.18.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/lib/
icu4j-53.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 845 milliseconds

1 2