Home
last modified time | relevance | path

Searched refs:countryCode (Results 1 – 11 of 11) sorted by relevance

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowAddress.java15 private String countryCode; field in ShadowAddress
83 return countryCode; in getCountryCode()
87 public void setCountryCode(String countryCode) { in setCountryCode() argument
88 this.countryCode = countryCode; in setCountryCode()
DShadowGeocoder.java25 private String countryCode; field in ShadowGeocoder
51 address.setCountryCode(countryCode); in getFromLocation()
87 …d setSimulatedResponse(String address, String city, String state, String zip, String countryCode) { in setSimulatedResponse() argument
92 this.countryCode = countryCode; in setSimulatedResponse()
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
DPhoneNumberUtil.java1635 int countryCode = number.getCountryCode();
1636 if (!hasValidCountryCallingCode(countryCode)) {
1656 if (countryCode == NANPA_COUNTRY_CODE) {
1658 return countryCode + " " + rawInput;
1661 countryCode == getCountryCodeForValidRegion(regionCallingFrom)) {
1694 String regionCode = getRegionCodeForCountryCode(countryCode);
1696 PhoneMetadata metadataForRegion = getMetadataForRegionOrCallingCode(countryCode, regionCode);
1700 formattedNumber.insert(0, " ").insert(0, countryCode).insert(0, " ")
1709 prefixNumberWithCountryCallingCode(countryCode,
2108 int countryCode = number.getCountryCode();
[all …]
DAsYouTypeFormatter.java597 int countryCode = phoneUtil.extractCountryCode(nationalNumber, numberWithoutCountryCallingCode); in attemptToExtractCountryCallingCode() local
598 if (countryCode == 0) { in attemptToExtractCountryCallingCode()
603 String newRegionCode = phoneUtil.getRegionCodeForCountryCode(countryCode); in attemptToExtractCountryCallingCode()
605 currentMetadata = phoneUtil.getMetadataForNonGeographicalRegion(countryCode); in attemptToExtractCountryCallingCode()
609 String countryCodeString = Integer.toString(countryCode); in attemptToExtractCountryCallingCode()
DPhoneNumberMatcher.java479 String countryCode = Integer.toString(number.getCountryCode()); in allNumberGroupsRemainGrouped() local
480 fromIndex = normalizedCandidate.indexOf(countryCode) + countryCode.length(); in allNumberGroupsRemainGrouped()
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
DClientData.java150 for (String countryCode : RegionDataConstants.getCountryFormatMap().keySet()) { in buildRegionalData()
151 countries.append(countryCode + "~"); in buildRegionalData()
152 String json = RegionDataConstants.getCountryFormatMap().get(countryCode); in buildRegionalData()
160 AddressData data = new AddressData.Builder().setCountry(countryCode).build(); in buildRegionalData()
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
DPersonalDataManager.java73 String countryCode, String phoneNumber, String emailAddress, String languageCode) { in AutofillProfile() argument
84 mCountryCode = countryCode; in AutofillProfile()
208 public void setCountryCode(String countryCode) { in setCountryCode() argument
209 mCountryCode = countryCode; in setCountryCode()
DAutofillDialogResult.java106 String countryCode, String languageCode) { in ResultAddress() argument
115 mCountryCode = countryCode; in ResultAddress()
/external/icu/icu4c/source/i18n/
Dtzgnames.cpp552 char countryCode[ULOC_COUNTRY_CAPACITY]; in getGenericLocationName() local
554 …2_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_… in getGenericLocationName()
555 countryCode[ccLen] = 0; in getGenericLocationName()
558 fLocaleDisplayNames->regionDisplayName(countryCode, country); in getGenericLocationName()
801 char countryCode[ULOC_COUNTRY_CAPACITY]; in getPartialLocationName() local
803 …2_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_… in getPartialLocationName()
804 countryCode[ccLen] = 0; in getPartialLocationName()
807 fTimeZoneNames->getReferenceZoneID(mzID, countryCode, regionalGolden); in getPartialLocationName()
810 fLocaleDisplayNames->regionDisplayName(countryCode, location); in getPartialLocationName()
/external/chromium_org/third_party/icu/source/i18n/
Dtzgnames.cpp552 char countryCode[ULOC_COUNTRY_CAPACITY]; in getGenericLocationName() local
554 …2_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_… in getGenericLocationName()
555 countryCode[ccLen] = 0; in getGenericLocationName()
558 fLocaleDisplayNames->regionDisplayName(countryCode, country); in getGenericLocationName()
801 char countryCode[ULOC_COUNTRY_CAPACITY]; in getPartialLocationName() local
803 …2_t ccLen = usCountryCode.extract(0, usCountryCode.length(), countryCode, sizeof(countryCode), US_… in getPartialLocationName()
804 countryCode[ccLen] = 0; in getPartialLocationName()
807 fTimeZoneNames->getReferenceZoneID(mzID, countryCode, regionalGolden); in getPartialLocationName()
810 fLocaleDisplayNames->regionDisplayName(countryCode, location); in getPartialLocationName()
/external/chromium_org/chrome/browser/resources/options/
Dautofill_edit_address_overlay.js302 var countryCode = this.getCountrySwitcher_().value;
303 if (countryCode)
304 chrome.send('loadAddressEditorComponents', [countryCode]);