HomeSort by relevance Sort by last modified time
    Searched defs:Country (Results 1 - 4 of 4) sorted by null

  /frameworks/base/location/java/android/location/
Country.java 26 * This class wraps the country information.
30 public class Country implements Parcelable {
32 * The country code came from the mobile network
37 * The country code came from the location service
42 * The country code was read from the SIM card
47 * The country code came from the system locale setting
52 * The ISO 3166-1 two letters country code.
57 * Where the country code came from.
70 * @param countryIso the ISO 3166-1 two letters country code.
81 public Country(final String countryIso, final int source)
    [all...]
  /external/chromium/chrome/browser/autofill/
address.cc 123 return Country();
157 string16 Address::Country() const {
183 void Address::SetCountry(const string16& country) {
185 country_code_ = AutofillCountry::GetCountryCode(country, app_locale);
  /external/guava/guava-tests/test/com/google/common/collect/
EnumBiMapTest.java 40 private enum Country { CANADA, CHILE, SWITZERLAND }
43 EnumBiMap<Currency, Country> bimap =
44 EnumBiMap.create(Currency.class, Country.class);
48 bimap.put(Currency.DOLLAR, Country.CANADA);
49 assertEquals(Country.CANADA, bimap.get(Currency.DOLLAR));
50 assertEquals(Currency.DOLLAR, bimap.inverse().get(Country.CANADA));
55 Map<Currency, Country> map = ImmutableMap.of(
56 Currency.DOLLAR, Country.CANADA,
57 Currency.PESO, Country.CHILE,
58 Currency.FRANC, Country.SWITZERLAND)
    [all...]
EnumHashBiMapTest.java 37 private enum Country { CANADA, CHILE, SWITZERLAND }
74 Map<Currency, Country> emptyBimap2 =
75 EnumBiMap.create(Currency.class, Country.class);
76 EnumHashBiMap<Currency, Country> bimap2
105 EnumBiMap<Currency, Country> bimap1 =
106 EnumBiMap.create(Currency.class, Country.class);
107 bimap1.put(Currency.DOLLAR, Country.SWITZERLAND);
110 assertEquals(Country.SWITZERLAND, bimap2.get(Currency.DOLLAR));
118 EnumBiMap<Currency, Country> emptyBimap =
119 EnumBiMap.create(Currency.class, Country.class)
    [all...]

Completed in 870 milliseconds