/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/util/ |
H A D | Locale.java | 237 private transient String countryCode; field in class:Locale 251 this.countryCode = upperCaseCountryCode; 281 countryCode = ""; 298 // countryCode = country.toUpperCase(Locale.US); // not supported by GWT 299 countryCode = country.toUpperCase(); 324 && countryCode.equals(o.countryCode) 353 return countryCode; 380 // if (countryCode.isEmpty()) { 411 // localeString = toNewString("fil", countryCode, variantCod 599 toNewString(String languageCode, String countryCode, String variantCode) argument [all...] |
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
H A D | ShadowAddress.java | 15 private String countryCode; field in class:ShadowAddress 83 return countryCode; 87 public void setCountryCode(String countryCode) { argument 88 this.countryCode = countryCode;
|
H A D | ShadowGeocoder.java | 25 private String countryCode; field in class:ShadowGeocoder 51 address.setCountryCode(countryCode); 85 * @param countryCode the country code for the response 87 public void setSimulatedResponse(String address, String city, String state, String zip, String countryCode) { argument 92 this.countryCode = countryCode;
|
/external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/javaspi/util/ |
H A D | LocaleNameProviderICU.java | 19 public String getDisplayCountry(String countryCode, Locale locale) { argument 20 countryCode = AsciiUtil.toUpperString(countryCode); 22 .regionDisplayName(countryCode); 23 if (disp == null || disp.length() == 0 || disp.equals(countryCode)) {
|
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | AsYouTypeFormatter.java | 600 int countryCode = phoneUtil.extractCountryCode(nationalNumber, numberWithoutCountryCallingCode); 601 if (countryCode == 0) { 606 String newRegionCode = phoneUtil.getRegionCodeForCountryCode(countryCode); 608 currentMetadata = phoneUtil.getMetadataForNonGeographicalRegion(countryCode); 612 String countryCodeString = Integer.toString(countryCode);
|
H A D | PhoneNumberUtil.java | 1572 int countryCode = number.getCountryCode(); 1573 if (!hasValidCountryCallingCode(countryCode)) { 1593 if (countryCode == NANPA_COUNTRY_CODE) { 1595 return countryCode + " " + rawInput; 1598 countryCode == getCountryCodeForValidRegion(regionCallingFrom)) { 1631 String regionCode = getRegionCodeForCountryCode(countryCode); 1633 PhoneMetadata metadataForRegion = getMetadataForRegionOrCallingCode(countryCode, regionCode); 1637 formattedNumber.insert(0, " ").insert(0, countryCode).insert(0, " ") 1646 prefixNumberWithCountryCallingCode(countryCode, 2030 int countryCode [all...] |
H A D | PhoneNumberMatcher.java | 478 String countryCode = Integer.toString(number.getCountryCode()); 479 fromIndex = normalizedCandidate.indexOf(countryCode) + countryCode.length();
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
H A D | TimeZoneGenericNames.java | 239 String countryCode = ZoneMeta.getCanonicalCountry(canonicalTzID, isPrimary); 240 if (countryCode != null) { 243 String country = getLocaleDisplayNames().regionDisplayName(countryCode); 551 String countryCode = ZoneMeta.getCanonicalCountry(tzID); 552 if (countryCode != null) { 554 String regionalGolden = _tznames.getReferenceZoneID(mzID, countryCode); 557 location = getLocaleDisplayNames().regionDisplayName(countryCode);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | TimeZoneGenericNames.java | 237 String countryCode = ZoneMeta.getCanonicalCountry(canonicalTzID, isPrimary); 238 if (countryCode != null) { 241 String country = getLocaleDisplayNames().regionDisplayName(countryCode); 549 String countryCode = ZoneMeta.getCanonicalCountry(tzID); 550 if (countryCode != null) { 552 String regionalGolden = _tznames.getReferenceZoneID(mzID, countryCode); 555 location = getLocaleDisplayNames().regionDisplayName(countryCode);
|
/external/icu/icu4c/source/i18n/ |
H A D | tzgnames.cpp | 552 char countryCode[ULOC_COUNTRY_CAPACITY]; local 554 int32_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_INV); 555 countryCode[ccLen] = 0; 558 fLocaleDisplayNames->regionDisplayName(countryCode, country); 805 char countryCode[ULOC_COUNTRY_CAPACITY]; local 807 int32_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_INV); 808 countryCode[ccLen] = 0; 811 fTimeZoneNames->getReferenceZoneID(mzID, countryCode, regionalGolde [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
H A D | TrieMapTest.java | 90 for (String countryCode : ULocale.getISOCountries()) { 91 localeName = ULocale.getDisplayCountry("und-" + countryCode, locale); 92 if (!localeName.equals(countryCode)) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
H A D | TrieMapTest.java | 86 for (String countryCode : ULocale.getISOCountries()) { 87 localeName = ULocale.getDisplayCountry("und-" + countryCode, locale); 88 if (!localeName.equals(countryCode)) {
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.p2.artifact.repository_1.1.1.R36x_v20100901.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/robolectric/v3/runtime/ |
H A D | shadows-core-3.1-SNAPSHOT-16.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-17.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-18.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-19.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-21.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | shadows-core-3.1-SNAPSHOT-22.jar | META-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ... |
H A D | android-all-4.3_r2-robolectric-0.jar | META-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ... |
H A D | android-all-4.4_r1-robolectric-1.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
H A D | commons-lang-2.6.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ... |
/external/guice/extensions/struts2/lib/ |
H A D | xwork-core-2.2.1.jar | META-INF/ META-INF/MANIFEST.MF xwork-validator-definition-1.0.dtd xwork ... |
/external/libgdx/backends/gdx-backend-moe/libs/ |
H A D | intel-moe-ios.jar | META-INF/ META-INF/MANIFEST.MF LICENSE com/ com/intel/ com/intel/moe/ com/intel/moe/ ... |