Searched defs:countryCallingCode (Results 1 - 4 of 4) sorted by relevance

/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DMetadataManager.java74 private static void loadAlternateFormatsMetadataFromFile(int countryCallingCode) { argument
76 ALTERNATE_FORMATS_FILE_PREFIX + "_" + countryCallingCode);
92 static PhoneMetadata getAlternateFormatsForCountry(int countryCallingCode) { argument
93 if (!countryCodeSet.contains(countryCallingCode)) {
97 if (!callingCodeToAlternateFormatsMap.containsKey(countryCallingCode)) {
98 loadAlternateFormatsMetadataFromFile(countryCallingCode);
101 return callingCodeToAlternateFormatsMap.get(countryCallingCode);
H A DShortNumberInfo.java97 private List<String> getRegionCodesForCountryCode(int countryCallingCode) { argument
98 List<String> regionCodes = countryCallingCodeToRegionCodeMap.get(countryCallingCode);
H A DPhoneNumberUtil.java614 void loadMetadataFromFile(String filePrefix, String regionCode, int countryCallingCode, argument
618 (isNonGeoRegion ? String.valueOf(countryCallingCode) : regionCode);
638 countryCodeToNonGeographicalMetadataMap.put(countryCallingCode, metadata);
942 * @param countryCallingCode the country calling code for which we want the mobile token
945 public static String getCountryMobileToken(int countryCallingCode) { argument
946 if (MOBILE_TOKEN_MAPPINGS.containsKey(countryCallingCode)) {
947 return MOBILE_TOKEN_MAPPINGS.get(countryCallingCode);
1081 private boolean hasValidCountryCallingCode(int countryCallingCode) { argument
1082 return countryCallingCodeToRegionCodeMap.containsKey(countryCallingCode);
1124 int countryCallingCode
1249 getMetadataForRegionOrCallingCode( int countryCallingCode, String regionCode) argument
1741 prefixNumberWithCountryCallingCode(int countryCallingCode, PhoneNumberFormat numberFormat, StringBuilder formattedNumber) argument
1904 getExampleNumberForNonGeoEntity(int countryCallingCode) argument
2052 getMetadataForNonGeographicalRegion(int countryCallingCode) argument
2173 getRegionCodeForCountryCode(int countryCallingCode) argument
2183 getRegionCodesForCountryCode(int countryCallingCode) argument
2273 isLeadingZeroPossible(int countryCallingCode) argument
[all...]
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
H A DMappingFileProvider.java77 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) { argument
158 int index = Arrays.binarySearch(countryCallingCodes, countryCallingCode);
167 fileName.append(countryCallingCode).append('_').append(languageCode);

Completed in 1731 milliseconds