Home
last modified time | relevance | path

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

/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
DFlyweightMapStorageTest.java48 private FlyweightMapStorage mapStorage;
52 mapStorage = new FlyweightMapStorage(); in setUp()
83 FlyweightMapStorage newMapStorage = new FlyweightMapStorage(); in testWriteAndReadExternal()
99 FlyweightMapStorage newMapStorage = new FlyweightMapStorage(); in testReadExternalThrowsIOExceptionWithMalformedData()
DPhonePrefixMapTest.java87 assertFalse(mapStorage instanceof FlyweightMapStorage); in testGetSmallerMapStorageChoosesDefaultImpl()
93 assertTrue(mapStorage instanceof FlyweightMapStorage); in testGetSmallerMapStorageChoosesFlyweightImpl()
177 assertFalse(localPhonePrefixMap.getPhonePrefixMapStorage() instanceof FlyweightMapStorage); in testReadWriteExternalWithDefaultStrategy()
187 assertTrue(localPhonePrefixMap.getPhonePrefixMapStorage() instanceof FlyweightMapStorage); in testReadWriteExternalWithFlyweightStrategy()
/external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
DPhonePrefixMap.java77 return new FlyweightMapStorage(); in createFlyweightMapStorage()
123 phonePrefixMapStorage = new FlyweightMapStorage(); in readExternal()
134 objectOutput.writeBoolean(phonePrefixMapStorage instanceof FlyweightMapStorage); in writeExternal()
DFlyweightMapStorage.java36 final class FlyweightMapStorage extends PhonePrefixMapStorageStrategy { class