Home
last modified time | relevance | path

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

/aosp12/packages/modules/GeoTZ/geotz_lookup/src/test/java/com/android/timezone/location/lookup/
H A DGeoTimeZonesFinderTest.java21 import com.android.timezone.location.lookup.GeoTimeZonesFinder.LocationToken;
74 try (GeoTimeZonesFinder geoTimeZonesFinder = getGeoTimeZonesFinderForTest()) { in sampleLookups()
87 try (GeoTimeZonesFinder geoTimeZonesFinder = getGeoTimeZonesFinderForTest()) { in locationTokenBehavior()
123 private GeoTimeZonesFinder getGeoTimeZonesFinderForTest() throws IOException { in getGeoTimeZonesFinderForTest()
124 return GeoTimeZonesFinder.create(mGeoDataFile); in getGeoTimeZonesFinderForTest()
/aosp12/packages/modules/GeoTZ/geotz_lookup/src/main/java/com/android/timezone/location/lookup/
H A DGeoTimeZonesFinder.java29 public abstract class GeoTimeZonesFinder implements Closeable { class
40 public static GeoTimeZonesFinder create(File file) throws IOException { in create()
H A DS2RangeFileBasedGeoTimeZonesFinder.java33 final class S2RangeFileBasedGeoTimeZonesFinder extends GeoTimeZonesFinder {
/aosp12/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/core/
H A DEnvironment.java31 import com.android.timezone.location.lookup.GeoTimeZonesFinder;
229 GeoTimeZonesFinder createGeoTimeZoneFinder() throws IOException; in createGeoTimeZoneFinder()
H A DOfflineLocationTimeZoneDelegate.java41 import com.android.timezone.location.lookup.GeoTimeZonesFinder;
42 import com.android.timezone.location.lookup.GeoTimeZonesFinder.LocationToken;
477 try (GeoTimeZonesFinder geoTimeZonesFinder = mEnvironment.createGeoTimeZoneFinder()) { in sendTimeZoneCertainResultIfNeeded()
/aosp12/packages/modules/GeoTZ/geotz_lookup/
H A Dproguard.flags1 -keep class com.android.timezone.location.lookup.GeoTimeZonesFinder {
/aosp12/packages/modules/GeoTZ/validation/geonames/src/main/java/com/android/timezone/location/validation/
H A DGeonamesComparison.java20 import com.android.timezone.location.lookup.GeoTimeZonesFinder;
93 try (GeoTimeZonesFinder geoTzFinder = GeoTimeZonesFinder.create(tzS2File); in main()
/aosp12/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/
H A DEnvironmentImpl.java42 import com.android.timezone.location.lookup.GeoTimeZonesFinder;
443 public GeoTimeZonesFinder createGeoTimeZoneFinder() throws IOException {
444 return GeoTimeZonesFinder.create(mGeoDataFile);
/aosp12/packages/modules/GeoTZ/locationtzprovider/src/test/java/com/android/timezone/location/provider/core/
H A DOfflineLocationTimeZoneDelegateTest.java38 import com.android.timezone.location.lookup.GeoTimeZonesFinder;
237 public GeoTimeZonesFinder createGeoTimeZoneFinder() throws IOException {
463 private static class FakeGeoTimeZonesFinder extends GeoTimeZonesFinder {