HomeSort by relevance Sort by last modified time
    Searched refs:country (Results 151 - 175 of 496) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
TestBagFormatter.java 154 String country = locales[i].getCountry(); local
156 if (country.equals("")) continue;
159 + "\t" + country
  /external/svox/pico/tts/
com_svox_picottsengine.cpp     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 120 /** Country code for the cached short code pattern matcher. */
147 /** XML tag for short code patterns for a specific country. */
150 /** XML attribute for the country code. */
151 private static final String ATTR_COUNTRY = "country";
184 * SMS short code regex pattern matcher for a specific country.
275 * Return a pattern matcher object for the specified country.
276 * @param country the country to search for
277 * @return a {@link ShortCodePatternMatcher} for the specified country, or null if not found
279 private ShortCodePatternMatcher getPatternMatcherFromFile(String country) {
    [all...]
  /external/wpa_supplicant_8/src/p2p/
p2p_go_neg.c 51 os_memcpy(dev->country, pos, 3);
52 wpa_hexdump_ascii(MSG_DEBUG, "P2P: Peer country", pos, 3);
53 if (pos[2] != 0x04 && os_memcmp(pos, p2p->cfg->country, 2) != 0) {
54 p2p_info(p2p, "Mismatching country (ours=%c%c peer's=%c%c)",
55 p2p->cfg->country[0], p2p->cfg->country[1],
176 p2p_buf_add_listen_channel(buf, p2p->cfg->country, p2p->cfg->reg_class,
182 p2p_buf_add_channel_list(buf, p2p->cfg->country, &p2p->channels);
184 p2p_buf_add_operating_channel(buf, p2p->cfg->country,
321 p2p_buf_add_operating_channel(buf, p2p->cfg->country,
    [all...]
p2p_build.c 85 void p2p_buf_add_listen_channel(struct wpabuf *buf, const char *country,
91 wpabuf_put_data(buf, country, 3);
99 void p2p_buf_add_operating_channel(struct wpabuf *buf, const char *country,
105 wpabuf_put_data(buf, country, 3);
151 void p2p_buf_add_channel_list(struct wpabuf *buf, const char *country,
160 wpabuf_put_data(buf, country, 3); /* Country String */
370 void p2p_buf_add_oob_go_neg_channel(struct wpabuf *buf, const char *country,
377 wpabuf_put_data(buf, country, 3);
  /cts/tests/tests/view/src/android/view/cts/
View_UsingViewsTest.java 42 * country of Argentina
47 * country of America
52 * country of China
463 private boolean showPicture(String country) {
464 if (ARGENTINA.equals(country)) {
467 } else if (AMERICA.equals(country)) {
470 } else if (CHINA.equals(country)) {
481 String country = mEditText.getText().toString(); local
482 if (!showPicture(country)) {
  /external/icu/icu4c/source/common/
locid.cpp 399 *p++ = '_'; /* No country found */
453 /* Copy the language and country fields */
456 uprv_strcpy(country, other.country);
509 language[0] = script[0] = country[0] = 0;
561 variantField = 1; /* Usually the 2nd one, except when a script or country is also used. */
577 /* We have a country */
578 uprv_memcpy(country, field[variantField], fieldLen[variantField]);
579 country[fieldLen[variantField]] = 0;
582 variantField++; /* script or country empty but variant in next field (i.e. en__POSIX) *
    [all...]
  /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) :
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsHelper.java 310 String country = loc.getCountry(); local
311 if (!TextUtils.isEmpty(country)) {
312 localeString += "-" + country;
321 * code and {@code CC} is a two letter country code.
  /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
  /development/ndk/sources/android/native_app_glue/
android_native_app_glue.c 65 char lang[2], country[2]; local
67 AConfiguration_getCountry(android_app->config, country);
74 lang[0], lang[1], country[0], country[1],
  /external/skia/platform_tools/android/third_party/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/wpa_supplicant_8/src/common/
ieee802_11_common.c 763 static int country_match(const char *const cc[], const char *const country)
767 if (country == NULL)
770 if (cc[i][0] == country[0] && cc[i][1] == country[1])
993 * @country: Country code, if known; otherwise, global operating class is used
998 int ieee80211_chan_to_freq(const char *country, u8 op_class, u8 chan)
1002 if (country_match(us_op_class_cc, country)) {
1008 if (country_match(eu_op_class_cc, country)) {
1014 if (country_match(jp_op_class_cc, country)) {
    [all...]
  /frameworks/base/libs/androidfw/tests/
ResTable_test.cpp 199 param.country[0] = 'S';
200 param.country[1] = 'E';
327 param.country[0] = 'S';
328 param.country[1] = 'E';
ConfigLocale_test.cpp 52 EXPECT_EQ('U', config.country[0]);
53 EXPECT_EQ('S', config.country[1]);
115 /* static */ void fillIn(const char* lang, const char* country,
122 if (country != NULL) {
123 out->packRegion(country);
183 EXPECT_EQ('U', test.country[0]);
184 EXPECT_EQ('S', test.country[1]);
  /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/icu/icu4c/source/tools/tzcode/
tz2icu.cpp 1596 string zone, country; local
1598 is >> zone >> country; local
1627 string country, coord, zone; local
1775 string country = i->first; local
1781 file << country << ":intvector { "; local
    [all...]
  /external/icu/icu4c/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/wpa_supplicant_8/wpa_supplicant/
config.h 261 char country[3]; member in struct:wpa_cred::roaming_partner
683 * country - Country code
685 * This is the ISO/IEC alpha2 country code for which we are operating
688 char country[2]; member in struct:wpa_config
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
IWifiManager.aidl 96 void setCountryCode(String country, boolean persist);
  /libcore/ojluni/src/main/java/java/util/
ResourceBundle.java 2816 String country = locale.getCountry(); local
    [all...]
  /packages/apps/TV/src/com/android/tv/ui/sidepanel/parentalcontrols/
RatingSystemsFragment.java 96 // Convert country codes to display names.
102 for (String country : countries) {
103 builder.append(country);
  /system/connectivity/shill/cellular/
mobile_operator_info.cc 106 const string& MobileOperatorInfo::country() const { function in class:shill::MobileOperatorInfo
107 const auto& result = impl_->country();
  /prebuilts/tools/common/m2/repository/commons-validator/commons-validator/1.2.0/
commons-validator-1.2.0.jar 

Completed in 3636 milliseconds

1 2 3 4 5 67 8 91011>>