Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/nitz/
DTimeZoneSuggesterImpl.java293 return zeroOffsetNitz && !countryUsesUtc(countryIsoCode, nitzData); in isNitzSignalOffsetInfoBogus()
296 private boolean countryUsesUtc(String countryIsoCode, NitzData nitzData) { in countryUsesUtc() method in TimeZoneSuggesterImpl
297 return mTimeZoneLookupHelper.countryUsesUtc( in countryUsesUtc()
DTimeZoneLookupHelper.java306 public boolean countryUsesUtc(@NonNull String isoCountryCode, long whenMillis) { in countryUsesUtc() method in TimeZoneLookupHelper
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/nitz/
DTimeZoneLookupHelperTest.java444 assertFalse(mTimeZoneLookupHelper.countryUsesUtc("us", NH_SUMMER_TIME_MILLIS)); in testCountryUsesUtc()
445 assertFalse(mTimeZoneLookupHelper.countryUsesUtc("us", NH_WINTER_TIME_MILLIS)); in testCountryUsesUtc()
446 assertFalse(mTimeZoneLookupHelper.countryUsesUtc("gb", NH_SUMMER_TIME_MILLIS)); in testCountryUsesUtc()
447 assertTrue(mTimeZoneLookupHelper.countryUsesUtc("gb", NH_WINTER_TIME_MILLIS)); in testCountryUsesUtc()