Home
last modified time | relevance | path

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

/packages/modules/GeoTZ/geotz_lookup/src/main/java/com/android/timezone/location/lookup/
DS2RangeFileBasedGeoTimeZonesFinder.java74 public List<String> findTimeZonesForLocationToken(LocationToken locationToken) in findTimeZonesForLocationToken() argument
76 if (!(locationToken instanceof LocationTokenImpl)) { in findTimeZonesForLocationToken()
77 throw new IllegalArgumentException("Unknown locationToken=" + locationToken); in findTimeZonesForLocationToken()
79 LocationTokenImpl locationTokenImpl = (LocationTokenImpl) locationToken; in findTimeZonesForLocationToken()
DGeoTimeZonesFinder.java82 public abstract List<String> findTimeZonesForLocationToken(LocationToken locationToken) in findTimeZonesForLocationToken() argument
/packages/modules/GeoTZ/locationtzprovider/src/main/java/com/android/timezone/location/provider/core/
DOfflineLocationTimeZoneDelegate.java479 LocationToken locationToken = geoTimeZonesFinder.createLocationTokenForLatLng( in sendTimeZoneCertainResultIfNeeded() local
484 if (locationToken.equals(mLastLocationToken)) { in sendTimeZoneCertainResultIfNeeded()
488 geoTimeZonesFinder.findTimeZonesForLocationToken(locationToken); in sendTimeZoneCertainResultIfNeeded()
489 logDebug("tzIds found for locationToken=" + locationToken + ", tzIds=" + tzIds); in sendTimeZoneCertainResultIfNeeded()
501 reportTimeZoneProviderResultInternal(result, locationToken); in sendTimeZoneCertainResultIfNeeded()
537 @Nullable LocationToken locationToken) { in reportTimeZoneProviderResultInternal() argument
539 mLastLocationToken = locationToken; in reportTimeZoneProviderResultInternal()
/packages/modules/GeoTZ/locationtzprovider/src/test/java/com/android/timezone/location/provider/core/
DOfflineLocationTimeZoneDelegateTest.java528 public List<String> findTimeZonesForLocationToken(LocationToken locationToken)
531 return mTimeZoneLookup.get(locationToken);