Home
last modified time | relevance | path

Searched refs:capabilitiesAndConfig (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/timezonedetector/
H A DConfigurationInternalTest.java64 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_unrestricted() local
67 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in test_unrestricted()
89 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_unrestricted() local
92 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in test_unrestricted()
126 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_restricted() local
129 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in test_restricted()
152 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_restricted() local
190 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_autoDetectNotSupported() local
213 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_autoDetectNotSupported() local
252 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in test_geoDetectNotSupported() local
[all …]
H A DFakeTimeZoneDetectorStrategy.java79 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in updateConfiguration() local
81 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in updateConfiguration()
82 TimeZoneConfiguration configuration = capabilitiesAndConfig.getConfiguration(); in updateConfiguration()
89 if (!newConfiguration.equals(capabilitiesAndConfig.getConfiguration())) { in updateConfiguration()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/datetime/
H A DLocationTimeZoneDetectionPreferenceControllerTest.java122 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in testLocationTimeZoneDetection_supported_shouldBeShown() local
124 when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig); in testLocationTimeZoneDetection_supported_shouldBeShown()
134 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in testLocationTimeZoneDetection_unsupported_shouldNotBeShown() local
136 when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig); in testLocationTimeZoneDetection_unsupported_shouldNotBeShown()
149 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in testLocationTimeZoneDetection_summary_geoDetectionEnabled() local
152 when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig); in testLocationTimeZoneDetection_summary_geoDetectionEnabled()
161 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in testLocationTimeZoneDetection_toggleIsOn_whenGeoDetectionEnabledAnsMlsIsOff() local
164 when(mTimeManager.getTimeZoneCapabilitiesAndConfig()).thenReturn(capabilitiesAndConfig); in testLocationTimeZoneDetection_toggleIsOn_whenGeoDetectionEnabledAnsMlsIsOff()
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/timedetector/
H A DConfigurationInternalTest.java36 public void capabilitiesAndConfig() { in capabilitiesAndConfig() method in ConfigurationInternalTest
53 assertThat(configurationInternal.capabilitiesAndConfig()).isEqualTo(expected); in capabilitiesAndConfig()
/aosp12/frameworks/base/services/core/java/com/android/server/timezonedetector/
H A DTimeZoneDetectorStrategyImpl.java254 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in updateConfiguration() local
256 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in updateConfiguration()
257 TimeZoneConfiguration oldConfiguration = capabilitiesAndConfig.getConfiguration(); in updateConfiguration()
324 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in suggestManualTimeZone() local
326 TimeZoneCapabilities capabilities = capabilitiesAndConfig.getCapabilities(); in suggestManualTimeZone()
/aosp12/packages/apps/Settings/src/com/android/settings/datetime/
H A DLocationTimeZoneDetectionPreferenceController.java70 TimeZoneCapabilitiesAndConfig capabilitiesAndConfig = in isChecked() local
72 TimeZoneConfiguration configuration = capabilitiesAndConfig.getConfiguration(); in isChecked()
/aosp12/frameworks/base/services/core/java/com/android/server/timedetector/
H A DConfigurationInternal.java47 public TimeCapabilitiesAndConfig capabilitiesAndConfig() { in capabilitiesAndConfig() method in ConfigurationInternal
H A DTimeDetectorService.java118 return configurationInternal.capabilitiesAndConfig(); in getTimeCapabilitiesAndConfig()