HomeSort by relevance Sort by last modified time
    Searched refs:country (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/chromium_org/base/android/java/src/org/chromium/base/
LocaleUtils.java 26 String country = locale.getCountry(); local
39 return country.isEmpty() ? language : language + "-" + country;
  /external/chromium_org/third_party/libaddressinput/chromium/tools/
require_fields.py 38 for country in _COUNTRIES:
39 url = _I18N_URL % country
46 print '%s: %s' % (country, data['require'])
  /device/asus/fugu/
wpa_supplicant.conf 2 country=XY
  /external/chromium_org/third_party/icu/source/tools/tzcode/
tzselect.ksh 77 country=
151 country = cc_list[i]
152 if (cc_name[country]) {
153 country = cc_name[country]
155 print country
161 # If there's more than one country, ask the user which one.
164 echo >&2 'Please select a country.'
165 select country in $countries
167 case $country i
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
tzselect.ksh 77 country=
151 country = cc_list[i]
152 if (cc_name[country]) {
153 country = cc_name[country]
155 print country
161 # If there's more than one country, ask the user which one.
164 echo >&2 'Please select a country.'
165 select country in $countries
167 case $country i
    [all...]
  /external/chromium_org/components/autofill/core/browser/
address_unittest.cc 17 // Test that country data can be properly returned as either a country code or a
18 // localized country name.
23 // Make sure that nothing breaks when the country code is missing.
24 base::string16 country = local
26 EXPECT_EQ(base::string16(), country); local
30 country = address.GetInfo(AutofillType(ADDRESS_HOME_COUNTRY), "en-US");
31 EXPECT_EQ(ASCIIToUTF16("United States"), country);
32 country = address.GetInfo(
34 EXPECT_EQ(ASCIIToUTF16("United States"), country);
59 base::string16 country = local
90 EXPECT_EQ(base::string16(), country); local
111 EXPECT_EQ(base::string16(), country); local
    [all...]
autofill_test_utils.h 72 const char* state, const char* zipcode, const char* country,
79 const char* state, const char* zipcode, const char* country,
  /development/ndk/platforms/android-13/include/android/
tts.h 158 // Returns the level of support for the language, country and variant.
159 // @return TTS_LANG_COUNTRY_VAR_AVAILABLE if the language, country and variant are supported,
161 // TTS_LANG_COUNTRY_AVAILABLE if the language and country are supported and the
166 // the specified country and variant
173 const char *country,
178 // language value is issued. Language and country values are coded according to the ISO three
183 // @param country pointer to the ISO three letter code for the country
189 const char *country,
192 // Load the resources associated with the specified language, country and Locale variant
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/res/
XResourceBundle.java 103 String country = locale.getCountry(); local
108 suffix += "_" + country;
110 if (country.equals("JP"))
111 suffix += "_" + country + "_" + variant;
  /cts/tests/tests/speech/src/android/speech/tts/cts/
StubTextToSpeechService.java 36 protected int onIsLanguageAvailable(String lang, String country, String variant) {
41 protected int onLoadLanguage(String lang, String country, String variant) {
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 91 String country = world[i]; local
99 guess = guessTimeZone(c, country);
104 private static TimeZone guessTimeZone(Calendar c, String country) {
108 country);
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 88 protected int onIsLanguageAvailable(String lang, String country, String variant) {
93 if ("USA".equals(country) || "GBR".equals(country)) {
103 // We support the language, but not the country.
116 protected synchronized int onLoadLanguage(String lang, String country, String variant) {
117 final int isLanguageAvailable = onIsLanguageAvailable(lang, country, variant);
123 String loadCountry = country;
130 if (mCurrentLanguage[0].equals(lang) && mCurrentLanguage[1].equals(country)) {
141 Log.e(TAG, "Error loading data for : " + lang + "-" + country);
  /external/chromium_org/chrome/browser/spellchecker/
feedback_sender.h 46 // FeedbackSender sender(profile.GetRequestContext(), language, country);
59 const std::string& country);
101 // Receives updated language and country code for feedback. Finalizes and
104 const std::string& country);
141 // The country of origin. The string is the ISO 3166-1 alpha-3 code.
spelling_service_client_unittest.cc 75 std::string country; variable
76 EXPECT_TRUE(value->GetString("params.originCountry", &country));
77 EXPECT_EQ(country_, country);
90 bool GetExpectedCountry(const std::string& language, std::string* country) {
93 const char* country; member in struct:__anon9344::TestSpellingURLFetcher::__anon9345
100 country->assign(kCountries[i].country);
  /external/chromium_org/chrome/browser/ui/autofill/
country_combobox_model_unittest.cc 42 AutofillCountry country(default_country,
44 EXPECT_EQ(country.name(), model()->GetItemAt(0));
country_combobox_model.cc 34 // Insert the default country at the top as well as in the ordered list.
88 AutofillCountry* country = countries_[index]; local
89 if (country)
  /external/chromium_org/ui/android/java/src/org/chromium/ui/base/
LocalizationUtils.java 44 private static Locale getJavaLocale(String language, String country, String variant) {
45 return new Locale(language, country, variant);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
Messages.java 359 String country = locale.getCountry(); local
361 if (country.equals("TW"))
362 suffix += "_" + country;
  /external/chromium_org/chrome/common/
spellcheck_common.cc 160 const char* country = "USA"; local
167 country = uloc_getISO3Country(id);
170 *country_code = std::string(country);
  /external/chromium_org/chrome/browser/ui/webui/options/
autofill_options_browsertest.js 63 assertEquals(getField('country').value, '');
85 country: 'CH',
97 {field: 'country', length: 'long'},
127 var country = getField('country');
128 assertEquals(testAddress.country, country.value);
129 assertTrue(country instanceof HTMLSelectElement);
  /external/chromium_org/third_party/icu/source/common/
ulocimp.h 59 char *country, int32_t countryCapacity,
  /external/icu/icu4c/source/common/
ulocimp.h 59 char *country, int32_t countryCapacity,
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news/javascript/
feed.js 9 * page according to country, topics and no. of stories selected in the
320 var country = window.localStorage.getItem('country');
321 country = (country == 'noCountry' || !country) ? '' : country;
337 feedUrl = DEFAULT_NEWS_URL + '&cf=all&ned=' + country + '&q=' + topicVal +
338 '&hl=' + country;
344 feedUrl = DEFAULT_NEWS_URL + '&cf=all&ned=' + country
    [all...]
options.js 8 * @fileoverview Includes the country selection, topics selection and
38 * Retrieves and sets last saved country from local storage(if found),
39 * else sets country retrieved from feed.
42 var country = window.localStorage.getItem('country');
44 // If country is not found in localstorage or default value is selected in
46 if ((!country) || country == 'noCountry') {
48 // retrieving the country value out of feed.
55 // Sets country to default Country in dropdown menu
    [all...]
  /external/chromium_org/base/i18n/
rtl.cc 19 // Extract language, country and variant, but ignore keywords. For example,
23 const char* country = locale.getCountry(); local
29 if (country != NULL && *country != '\0') {
31 result += country;
95 const char* country = locale.getCountry(); local
97 !LowerCaseEqualsASCII(country, "es")) {
99 language += country;

Completed in 822 milliseconds

1 2 3 4 5 6