HomeSort by relevance Sort by last modified time
    Searched refs:country (Results 101 - 125 of 292) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/components/test/data/web_database/
version_35.sql 17 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, country_code VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0);
44 /* A profile with bad State (country == US). Should get discarded. */
48 /* A profile with bad zip (country == US). Should get discarded. */
version_34.sql 26 INSERT INTO "autofill" VALUES('country','UK','uk',9,1);
37 CREATE TABLE autofill_profiles ( guid VARCHAR PRIMARY KEY, company_name VARCHAR, address_line_1 VARCHAR, address_line_2 VARCHAR, city VARCHAR, state VARCHAR, zipcode VARCHAR, country VARCHAR, date_modified INTEGER NOT NULL DEFAULT 0, country_code VARCHAR);
  /external/icu4c/common/
locid.cpp 368 *p++ = '_'; /* No country found */
428 /* Copy the language and country fields */
431 uprv_strcpy(country, other.country);
485 language[0] = script[0] = country[0] = 0;
537 variantField = 1; /* Usually the 2nd one, except when a script or country is also used. */
553 /* We have a country */
554 uprv_memcpy(country, field[variantField], fieldLen[variantField]);
555 country[fieldLen[variantField]] = 0;
558 variantField++; /* script or country empty but variant in next field (i.e. en__POSIX) *
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_invitation.c 67 p2p_buf_add_operating_channel(buf, p2p->cfg->country,
72 p2p_buf_add_channel_list(buf, p2p->cfg->country, &p2p->channels);
135 p2p_buf_add_operating_channel(buf, p2p->cfg->country,
140 p2p_buf_add_channel_list(buf, p2p->cfg->country, channels);
309 p2p_dbg(p2p, "Unknown operational channel (country=%c%c reg_class=%u channel=%u)",
310 p2p->cfg->country[0], p2p->cfg->country[1],
  /frameworks/base/location/java/android/location/
Address.java 256 * Returns the country code of the address, for example "US",
264 * Sets the country code of the address to the given String, which may
272 * Returns the localized country name of the address, for example "Iceland",
280 * Sets the country name of the address to the given String, which may
479 String country = in.readString();
480 Locale locale = country.length() > 0 ?
481 new Locale(language, country) :
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
p2p.h 133 uint8 country[3]; /* Country String */ member in struct:wifi_p2p_listen_channel_se_s
244 uint8 country[3]; /* Country String */ member in struct:wifi_p2p_chanlist_se_s
313 uint8 country[3]; /* Country String */ member in struct:wifi_p2p_op_channel_se_s
  /packages/apps/Mms/src/com/android/mms/transaction/
HttpUtils.java 366 String country = locale.getCountry(); local
367 if (country != null) {
369 builder.append(country);
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 64 char lang[2], country[2]; local
66 AConfiguration_getCountry(android_app->config, country);
73 lang[0], lang[1], country[0], country[1],
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
itunes_data_provider.cc 184 const char* country = locale.getCountry(); local
188 if (country != NULL && *country != '\0' &&
190 std::string(language) + "-" + country,
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_cmd_wext.c 193 char *country = "US"; /* WEXT_NUMBER_SCAN_CHANNELS_FCC */ local
196 country = "EU";
198 country = "JP";
199 return country;
301 os_snprintf(cmd, MAX_DRV_CMD_SIZE, "COUNTRY %s",
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ReverseGeocoder.java 254 // Check the country codes.
358 String country = readUTF(dis); local
362 if (country == null) {
365 locale = new Locale(language, country);
367 locale = new Locale(language, country, variant);
  /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/chromium_org/chrome/browser/resources/options/
autofill_edit_overlay.css 20 #country {
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc 29 DLOG(ERROR) << "Response from Google Wallet missing country name";
161 DLOG(ERROR) << "Reponse from Google Wallet missing country code";
297 AutofillCountry country(country_name_code(), app_locale);
298 return country.name();
  /external/chromium_org/third_party/icu/source/common/unicode/
uloc.h 37 * according to the customs/conventions of the user's native country,
62 * The second option includes an additonal <STRONG>ISO Country
106 * itself. Use <code>uloc_getCountry</code> to get the ISO Country Code and
109 * name of the country suitable for displaying to the user. Similarly,
114 * that takes a locale as an argument and displays the name or country in
161 * through these objects by language, country, or variant,
187 * "-" is recognized as a country/variant separator similarly to RFC1766.
219 /** Useful constant for this country/region. @stable ICU 2.0 */
221 /** Useful constant for this country/region. @stable ICU 2.0 */
223 /** Useful constant for this country/region. @stable ICU 2.0 *
    [all...]
  /external/icu4c/common/unicode/
uloc.h 37 * according to the customs/conventions of the user's native country,
62 * The second option includes an additonal <STRONG>ISO Country
106 * itself. Use <code>uloc_getCountry</code> to get the ISO Country Code and
109 * name of the country suitable for displaying to the user. Similarly,
114 * that takes a locale as an argument and displays the name or country in
161 * through these objects by language, country, or variant,
187 * "-" is recognized as a country/variant separator similarly to RFC1766.
219 /** Useful constant for this country/region. @stable ICU 2.0 */
221 /** Useful constant for this country/region. @stable ICU 2.0 */
223 /** Useful constant for this country/region. @stable ICU 2.0 *
    [all...]
  /frameworks/base/core/java/com/android/internal/app/
LocalePicker.java 137 String country = s.substring(3, 5); local
138 final Locale l = new Locale(language, country);
148 // same lang and a country -> upgrade to full name and
  /libcore/luni/src/main/java/java/util/
ResourceBundle.java 46 * the same language. Only the differences between a country and the country of
47 * the language bundle need to be handled by a country-specific {@code ResourceBundle}.
51 * currency of come countries changed. The country bundle would return the
71 * done by just skipping the country or language abbreviation:
73 * circumvent both language and country: BaseName___VARIANT is illegal.
586 * locale had an empty language, country and variant.
590 String country = locale.getCountry(); local
594 } else if (!country.isEmpty()) {
595 country = ""
817 String country = locale.getCountry(); local
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
locdspnm.cpp 357 const char* country = locale.getCountry(); local
361 UBool hasCountry = uprv_strlen(country) > 0;
368 ncat(buffer, ULOC_FULLNAME_CAPACITY, lang, "_", script, "_", country, (char *)0);
385 ncat(buffer, ULOC_FULLNAME_CAPACITY, lang, "_", country, (char*)0);
407 appendWithSep(resultRemainder, regionDisplayName(country, temp));
  /external/chromium_org/components/autofill/core/browser/
autofill_country.cc 31 // The maximum capacity needed to store a locale up to the country code.
46 // Maps country codes to localized label string identifiers.
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/res/
XSLTErrorResources.java 1502 String country = locale.getCountry(); local
    [all...]
  /frameworks/base/core/java/android/speech/tts/
TtsEngines.java 338 final String country = Settings.Secure.getString(cr, Settings.Secure.TTS_DEFAULT_COUNTRY); local
346 if (!TextUtils.isEmpty(country)) {
347 v1Locale += LOCALE_DELIMITER + country;
363 * <li> "ISO 639-2/T language code" if locale have no country entry</li>
364 * <li> "ISO 639-2/T language code{@link #LOCALE_DELIMITER}ISO 3166 country code "
366 * <li> "ISO 639-2/T language code{@link #LOCALE_DELIMITER}ISO 3166 country code
388 // an empty country.
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 23 import android.location.Country;
516 * @param context the context used to look up the current locale / country
561 * @return The ISO 3166-1 two letters country code of the country the user
569 Country country = detector.detectCountry(); local
570 if (country != null) {
571 countryIso = country.getCountryIso();
  /packages/apps/InCallUI/src/com/android/incallui/
CallerInfo.java 23 import android.location.Country;
513 * @param context the context used to look up the current locale / country
559 * @return The ISO 3166-1 two letters country code of the country the user
567 Country country = detector.detectCountry(); local
568 if (country != null) {
569 countryIso = country.getCountryIso();
  /development/ndk/platforms/android-9/include/android/
configuration.h 156 * Return the current country code set in the configuration. The output will
158 * a country is not set, they will be 0.
163 * Set the current country code in the configuration, from the first two
166 void AConfiguration_setCountry(AConfiguration* config, const char* country);

Completed in 1383 milliseconds

1 2 3 45 6 7 8 91011>>