Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qrcodescanner/controller/
H A DQRCodeScannerControllerTest.java134 assertThat(mController.isEnabledForLockScreenButton()).isFalse(); in qrCodeScannerInit_withoutDefaultValue()
144 assertThat(mController.isEnabledForLockScreenButton()).isFalse(); in qrCodeScannerInit_withIncorrectDefaultValue()
153 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in qrCodeScannerInit_withCorrectDefaultValue()
163 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in qrCodeScannerInit_withCorrectDeviceConfig()
173 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in qrCodeScannerInit_withCorrectDeviceConfig_withCorrectDefaultValue()
183 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in qrCodeScannerInit_withCorrectDeviceConfig_fullActivity()
203 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in verifyDeviceConfigChange_withDefaultActivity()
210 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in verifyDeviceConfigChange_withDefaultActivity()
217 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in verifyDeviceConfigChange_withDefaultActivity()
238 assertThat(mController.isEnabledForLockScreenButton()).isTrue(); in verifyDeviceConfigChange_withoutDefaultActivity()
[all …]
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/data/quickaffordance/
H A DQrCodeScannerKeyguardQuickAffordanceConfigTest.kt61 whenever(controller.isEnabledForLockScreenButton).thenReturn(true)
81 whenever(controller.isEnabledForLockScreenButton).thenReturn(true)
103 whenever(controller.isEnabledForLockScreenButton).thenReturn(true)
119 whenever(controller.isEnabledForLockScreenButton).thenReturn(false)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/data/quickaffordance/
H A DQrCodeScannerKeyguardQuickAffordanceConfig.kt97 return if (controller.isEnabledForLockScreenButton) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qrcodescanner/controller/
H A DQRCodeScannerController.java161 public boolean isEnabledForLockScreenButton() { in isEnabledForLockScreenButton() method in QRCodeScannerController