Home
last modified time | relevance | path

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

/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
DFlyweightMapStorageTest.java48 private FlyweightMapStorage mapStorage; field in FlyweightMapStorageTest
52 mapStorage = new FlyweightMapStorage(); in setUp()
53 mapStorage.readFromSortedMap(phonePrefixMap); in setUp()
57 assertEquals(331402, mapStorage.getPrefix(0)); in testReadFromSortedMap()
58 assertEquals(331434, mapStorage.getPrefix(1)); in testReadFromSortedMap()
59 assertEquals(334910, mapStorage.getPrefix(2)); in testReadFromSortedMap()
60 assertEquals(334911, mapStorage.getPrefix(3)); in testReadFromSortedMap()
62 assertEquals("Paris", mapStorage.getDescription(0)); in testReadFromSortedMap()
63 assertSame(mapStorage.getDescription(0), mapStorage.getDescription(1)); in testReadFromSortedMap()
65 assertEquals("Marseille", mapStorage.getDescription(2)); in testReadFromSortedMap()
[all …]
DPhonePrefixMapTest.java85 PhonePrefixMapStorageStrategy mapStorage = in testGetSmallerMapStorageChoosesDefaultImpl() local
87 assertFalse(mapStorage instanceof FlyweightMapStorage); in testGetSmallerMapStorageChoosesDefaultImpl()
91 PhonePrefixMapStorageStrategy mapStorage = in testGetSmallerMapStorageChoosesFlyweightImpl() local
93 assertTrue(mapStorage instanceof FlyweightMapStorage); in testGetSmallerMapStorageChoosesFlyweightImpl()
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DPhonePrefixMap.java60 private static int getSizeOfPhonePrefixMapStorage(PhonePrefixMapStorageStrategy mapStorage, in getSizeOfPhonePrefixMapStorage() argument
62 mapStorage.readFromSortedMap(phonePrefixMap); in getSizeOfPhonePrefixMapStorage()
65 mapStorage.writeExternal(objectOutputStream); in getSizeOfPhonePrefixMapStorage()