Home
last modified time | relevance | path

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

/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DFlyweightMapStorage.java51 private String[] descriptionPool; field in FlyweightMapStorage
66 return descriptionPool[indexInDescriptionPool]; in getDescription()
96 descriptionPool = new String[descriptionsSet.size()]; in createDescriptionPool()
97 descriptionsSet.toArray(descriptionPool); in createDescriptionPool()
104 int positionInDescriptionPool = Arrays.binarySearch(descriptionPool, description); in createDescriptionPool()
126 if (descriptionPool == null || descriptionPool.length < descriptionPoolSize) { in readExternal()
127 descriptionPool = new String[descriptionPoolSize]; in readExternal()
131 descriptionPool[i] = description; in readExternal()
168 objectOutput.writeInt(descriptionPool.length); in writeExternal()
170 for (String description : descriptionPool) { in writeExternal()