HomeSort by relevance Sort by last modified time
    Searched refs:countryCallingCode (Results 1 - 9 of 9) sorted by null

  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
MetadataManager.java 74 private static void loadAlternateFormatsMetadataFromFile(int countryCallingCode) {
76 ALTERNATE_FORMATS_FILE_PREFIX + "_" + countryCallingCode);
92 static PhoneMetadata getAlternateFormatsForCountry(int countryCallingCode) {
93 if (!countryCodeSet.contains(countryCallingCode)) {
97 if (!callingCodeToAlternateFormatsMap.containsKey(countryCallingCode)) {
98 loadAlternateFormatsMetadataFromFile(countryCallingCode);
101 return callingCodeToAlternateFormatsMap.get(countryCallingCode);
PhoneNumberUtil.java 611 void loadMetadataFromFile(String filePrefix, String regionCode, int countryCallingCode,
615 (isNonGeoRegion ? String.valueOf(countryCallingCode) : regionCode);
635 countryCodeToNonGeographicalMetadataMap.put(countryCallingCode, metadata);
    [all...]
AsYouTypeFormatter.java 136 int countryCallingCode = phoneUtil.getCountryCodeForRegion(regionCode);
137 String mainCountry = phoneUtil.getRegionCodeForCountryCode(countryCallingCode);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
PrefixFileReader.java 38 // The mappingFileProvider knows for which combination of countryCallingCode and language a phone
116 int countryCallingCode = number.getCountryCode();
119 int phonePrefix = (countryCallingCode != 1) ?
120 countryCallingCode : (1000 + (int) (number.getNationalNumber() / 10000000));
MappingFileProvider.java 77 for (int countryCallingCode : availableDataFiles.keySet()) {
78 countryCallingCodes[index++] = countryCallingCode;
79 availableLanguages.add(new HashSet<String>(availableDataFiles.get(countryCallingCode)));
143 * Gets the name of the file that contains the mapping data for the {@code countryCallingCode} in
146 * @param countryCallingCode the country calling code of phone numbers which the data file
154 String getFileName(int countryCallingCode, String language, String script, String region) {
158 int index = Arrays.binarySearch(countryCallingCodes, countryCallingCode);
167 fileName.append(countryCallingCode).append('_').append(languageCode);
  /packages/apps/ContactsCommon/libs/
libphonenumber-6.2.jar 
geocoder-2.9.jar 
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberUtilTest.java     [all...]
  /frameworks/base/telephony/java/android/telephony/
PhoneNumberUtils.java 576 if (cccA.countryCallingCode != cccB.countryCallingCode) {
    [all...]

Completed in 817 milliseconds