/packages/apps/Settings/tests/unit/src/com/android/settings/fingerprint2/ui/enrollment/modules/enrolling/rfps/viewmodel/ |
D | RFPSIconTouchViewModelTest.kt | 63 var shouldShowDialog = false in initShouldNotShowDialog() variable 65 val job = launch { rfpsIconTouchViewModel.shouldShowDialog.collect { shouldShowDialog = it } } in initShouldNotShowDialog() 69 assertThat(shouldShowDialog).isFalse() in initShouldNotShowDialog() 76 var shouldShowDialog = false in shouldShowDialogTest() variable 78 val job = launch { rfpsIconTouchViewModel.shouldShowDialog.collect { shouldShowDialog = it } } in shouldShowDialogTest() 86 assertThat(shouldShowDialog).isTrue() in shouldShowDialogTest() 93 var shouldShowDialog = false in stateShouldBeFalseAfterReset() variable 95 val job = launch { rfpsIconTouchViewModel.shouldShowDialog.collect { shouldShowDialog = it } } in stateShouldBeFalseAfterReset() 103 assertThat(shouldShowDialog).isTrue() in stateShouldBeFalseAfterReset() 108 assertThat(shouldShowDialog).isFalse() in stateShouldBeFalseAfterReset() [all …]
|
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/ |
D | BluetoothPairingRequest.java | 49 boolean shouldShowDialog = BluetoothUtils.shouldShowDialogInForeground( in onReceive() 51 if (powerManager.isInteractive() && shouldShowDialog) { in onReceive()
|
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/permissions/additionalaccess/ |
D | AdditionalAccessViewModelTest.kt | 391 assertThat(enableExerciseEventResult.shouldShowDialog).isTrue() in <lambda>() 426 assertThat(enableExerciseEventResult.shouldShowDialog).isFalse() in <lambda>() 462 assertThat(enableExerciseEventResult.shouldShowDialog).isFalse() in <lambda>() 504 assertThat(enableExerciseEventResult.shouldShowDialog).isFalse() in <lambda>() 541 assertThat(enableExerciseEventResult.shouldShowDialog).isFalse() in <lambda>() 565 assertThat(showEnableExerciseEventObserver.getLastValue().shouldShowDialog).isFalse() in <lambda>()
|
D | AdditionalAccessFragmentTest.kt | 1094 val event = EnableExerciseDialogEvent(shouldShowDialog = true, appName = TEST_APP_NAME) in <lambda>() 1110 val event = EnableExerciseDialogEvent(shouldShowDialog = false, appName = TEST_APP_NAME) in <lambda>()
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
D | BluetoothPairingRequest.java | 54 boolean shouldShowDialog = LocalBluetoothPreferences.shouldShowDialogInForeground( in onReceive() 73 } else if (powerManager.isInteractive() && shouldShowDialog) { in onReceive()
|
D | BluetoothKeyMissingReceiver.java | 77 if (shouldShowDialog(context, device, powerManager)) { in onReceive() 108 private boolean shouldShowDialog( in shouldShowDialog() method in BluetoothKeyMissingReceiver
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/permissions/additionalaccess/ |
D | AdditionalAccessViewModel.kt | 81 shouldShowDialog = _showEnableExerciseEvent.value ?: false, in <lambda>() 89 shouldShowDialog = _showEnableExerciseEvent.value ?: false, in <lambda>() 295 val shouldShowDialog: Boolean = false, constant in com.android.healthconnect.controller.permissions.additionalaccess.AdditionalAccessViewModel.EnableExerciseDialogEvent
|
D | AdditionalAccessFragment.kt | 94 if (state.shouldShowDialog) { in <lambda>()
|
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/ui/enrollment/modules/enrolling/rfps/ui/viewmodel/ |
D | RFPSIconTouchViewModel.kt | 48 val shouldShowDialog: Flow<Boolean> = in <lambda>() constant in com.android.settings.biometrics.fingerprint2.ui.enrollment.modules.enrolling.rfps.ui.viewmodel.RFPSIconTouchViewModel
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/route/ |
D | RouteRequestActivity.kt | 243 if (shouldShowDialog()) { in <lambda>() 248 private fun shouldShowDialog() = in <lambda>() method
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/permissions/app/ |
D | AppPermissionViewModel.kt | 231 shouldShowDialog = _showDisableExerciseRouteEvent.value ?: false, in <lambda>() 239 shouldShowDialog = _showDisableExerciseRouteEvent.value ?: false, in <lambda>() 742 val shouldShowDialog: Boolean = false, in <lambda>() constant in com.android.healthconnect.controller.permissions.app.AppPermissionViewModel.DisableExerciseRouteDialogEvent
|
D | SettingsFitnessAppFragment.kt | 178 if (event.shouldShowDialog) { in <lambda>()
|
D | FitnessAppFragment.kt | 183 if (savedInstanceState == null && event.shouldShowDialog) { in <lambda>()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/ |
D | BatteryTipPreferenceControllerTest.java | 125 doReturn(false).when(mBatteryTip).shouldShowDialog(); in handlePreferenceTreeClick_noDialog_invokeCallback()
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/tips/ |
D | BatteryTip.java | 175 public boolean shouldShowDialog() { in shouldShowDialog() method in BatteryTip
|
D | RestrictAppTip.java | 115 mShowDialog = tip.shouldShowDialog(); in updateState()
|
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/ |
D | BatteryTipPreferenceController.java | 120 if (batteryTip.shouldShowDialog()) { in handlePreferenceTreeClick()
|
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/ui/enrollment/modules/enrolling/rfps/ui/fragment/ |
D | RFPSEnrollFragment.kt | 141 iconTouchViewModel.shouldShowDialog.collectLatest { showDialog -> in <lambda>()
|