Home
last modified time | relevance | path

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

/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DDefaultMapStorage.java56 possibleLengths.add((int) Math.log10(prefix) + 1); in readFromSortedMap()
75 possibleLengths.clear(); in readExternal()
77 possibleLengths.add(objectInput.readInt()); in readExternal()
88 int sizeOfLengths = possibleLengths.size(); in writeExternal()
90 for (Integer length : possibleLengths) { in writeExternal()
DFlyweightMapStorage.java82 possibleLengths.add((int) Math.log10(prefix) + 1); in readFromSortedMap()
118 possibleLengths.clear(); in readExternal()
120 possibleLengths.add(objectInput.readInt()); in readExternal()
161 int sizeOfLengths = possibleLengths.size(); in writeExternal()
163 for (Integer length : possibleLengths) { in writeExternal()
DAreaCodeMapStorageStrategy.java34 protected final TreeSet<Integer> possibleLengths = new TreeSet<Integer>(); field in AreaCodeMapStorageStrategy
92 return possibleLengths; in getPossibleLengths()