Home
last modified time | relevance | path

Searched refs:COUNTRY_DIALING_CODE (Results 1 – 3 of 3) sorted by relevance

/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/
DCountryCodeUtilsTest.java33 assertThat(CountryCodeUtils.COUNTRY_DIALING_CODE).hasSize(original.size()); in testCountryToRegionalCode_generatedCorrectly()
35 for (String dialingCode : CountryCodeUtils.COUNTRY_DIALING_CODE) { in testCountryToRegionalCode_generatedCorrectly()
44 for (String dialingCode : CountryCodeUtils.COUNTRY_DIALING_CODE) { in testCountryToRegionalCode_dialingCode_hasMaximum_threeDigits()
53 for (String dialingCode : CountryCodeUtils.COUNTRY_DIALING_CODE) { in testCountryToRegionalCode_dialingCode_noPrefixes()
55 assertThat(CountryCodeUtils.COUNTRY_DIALING_CODE).doesNotContain( in testCountryToRegionalCode_dialingCode_noPrefixes()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/
DCountryCodeUtils.java35 public static final Set<String> COUNTRY_DIALING_CODE; field in CountryCodeUtils
53 COUNTRY_DIALING_CODE = Collections.unmodifiableSet(COUNTRY_TO_REGIONAL_CODE.keySet());
DContactsIndexerPhoneNumberUtils.java152 if (CountryCodeUtils.COUNTRY_DIALING_CODE.contains(possibleCodeWithPlusSign)) { in parsePhoneNumberInE164()