Searched refs:sortedAreaCodeMap (Results 1 - 3 of 3) sorted by relevance

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
H A DDefaultMapStorage.java49 public void readFromSortedMap(SortedMap<Integer, String> sortedAreaCodeMap) { argument
50 numOfEntries = sortedAreaCodeMap.size();
54 for (int prefix : sortedAreaCodeMap.keySet()) {
58 sortedAreaCodeMap.values().toArray(descriptions);
H A DAreaCodeMapStorageStrategy.java56 * sortedAreaCodeMap} that maps phone number prefixes to description strings.
58 * @param sortedAreaCodeMap a sorted map that maps phone number prefixes including country
61 public abstract void readFromSortedMap(SortedMap<Integer, String> sortedAreaCodeMap); argument
H A DAreaCodeMap.java103 * Creates an {@link AreaCodeMap} initialized with {@code sortedAreaCodeMap}. Note that the
107 * @param sortedAreaCodeMap a map from phone number prefixes to descriptions of corresponding
110 public void readAreaCodeMap(SortedMap<Integer, String> sortedAreaCodeMap) { argument
111 areaCodeMapStorage = getSmallerMapStorage(sortedAreaCodeMap);

Completed in 57 milliseconds