Searched refs:countryCallingCode (Results 1 - 7 of 7) sorted by relevance

/external/libphonenumber/java/src/com/android/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 DPhoneNumberUtil.java611 void loadMetadataFromFile(String filePrefix, String regionCode, int countryCallingCode, argument
615 (isNonGeoRegion ? String.valueOf(countryCallingCode) : regionCode);
635 countryCodeToNonGeographicalMetadataMap.put(countryCallingCode, metadata);
939 * @param countryCallingCode the country calling code for which we want the mobile token
942 public static String getCountryMobileToken(int countryCallingCode) { argument
943 if (MOBILE_TOKEN_MAPPINGS.containsKey(countryCallingCode)) {
944 return MOBILE_TOKEN_MAPPINGS.get(countryCallingCode);
1078 private boolean hasValidCountryCallingCode(int countryCallingCode) { argument
1079 return countryCallingCodeToRegionCodeMap.containsKey(countryCallingCode);
1121 int countryCallingCode
1246 getMetadataForRegionOrCallingCode( int countryCallingCode, String regionCode) argument
1738 prefixNumberWithCountryCallingCode(int countryCallingCode, PhoneNumberFormat numberFormat, StringBuilder formattedNumber) argument
1901 getExampleNumberForNonGeoEntity(int countryCallingCode) argument
2051 getMetadataForNonGeographicalRegion(int countryCallingCode) argument
2181 getRegionCodeForCountryCode(int countryCallingCode) argument
2191 getRegionCodesForCountryCode(int countryCallingCode) argument
2281 isLeadingZeroPossible(int countryCallingCode) argument
[all...]
H A DAsYouTypeFormatter.java136 int countryCallingCode = phoneUtil.getCountryCodeForRegion(regionCode);
137 String mainCountry = phoneUtil.getRegionCodeForCountryCode(countryCallingCode);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/prefixmapper/
H A DPrefixFileReader.java38 // 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));
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);
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
H A DPhoneNumberUtilTest.java1568 int countryCallingCode = 1;
1570 assertEquals("Did not extract country calling code " + countryCallingCode + " correctly.",
1571 countryCallingCode,
1586 int countryCallingCode = 64;
1588 assertEquals("Did not extract country calling code " + countryCallingCode + " correctly.",
1589 countryCallingCode,
1600 int countryCallingCode = 800;
1602 assertEquals("Did not extract country calling code " + countryCallingCode + " correctly.",
1603 countryCallingCode,
1639 int countryCallingCode
[all...]
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 122 milliseconds