Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/notification/
H A DZenDurationDialogTest.java68 assertFalse(mController.getConditionTagAt(ZenDurationDialog.FOREVER_CONDITION_INDEX).rb in testAlwaysPrompt()
72 assertTrue(mController.getConditionTagAt( in testAlwaysPrompt()
82 assertTrue(mController.getConditionTagAt(ZenDurationDialog.FOREVER_CONDITION_INDEX).rb in testForever()
86 assertFalse(mController.getConditionTagAt( in testForever()
95 assertFalse(mController.getConditionTagAt(ZenDurationDialog.FOREVER_CONDITION_INDEX).rb in testSpecificDuration()
99 assertFalse(mController.getConditionTagAt( in testSpecificDuration()
123 mController.getConditionTagAt(ZenDurationDialog.FOREVER_CONDITION_INDEX).rb.setChecked( in testChooseForeverSetting()
157 ZenDurationDialog.ConditionTag tag = mController.getConditionTagAt( in testGetTimeFromBucket()
216 ZenDurationDialog.ConditionTag forever = mController.getConditionTagAt( in testAccessibility()
218 ZenDurationDialog.ConditionTag countdown = mController.getConditionTagAt( in testAccessibility()
[all …]
H A DEnableZenModeDialogTest.java117 assertTrue(mController.getConditionTagAt(EnableZenModeDialog.FOREVER_CONDITION_INDEX).rb in testForeverChecked()
121 assertFalse(mController.getConditionTagAt( in testForeverChecked()
128 assertFalse(mController.getConditionTagAt(EnableZenModeDialog.FOREVER_CONDITION_INDEX).rb in testNoneChecked()
132 assertFalse(mController.getConditionTagAt( in testNoneChecked()
142 assertFalse(mController.getConditionTagAt(EnableZenModeDialog.FOREVER_CONDITION_INDEX).rb in testAlarmChecked()
146 assertTrue(mController.getConditionTagAt( in testAlarmChecked()
156 assertFalse(mController.getConditionTagAt(EnableZenModeDialog.FOREVER_CONDITION_INDEX).rb in testCountdownChecked()
160 assertFalse(mController.getConditionTagAt( in testCountdownChecked()
201 EnableZenModeDialog.ConditionTag forever = mController.getConditionTagAt( in testAccessibility()
203 EnableZenModeDialog.ConditionTag countdown = mController.getConditionTagAt( in testAccessibility()
[all …]
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/notification/
H A DEnableZenModeDialog.java134 ConditionTag tag = getConditionTagAt(checkedId); in createDialog()
238 protected ConditionTag getConditionTagAt(int index) { in getConditionTagAt() method in EnableZenModeDialog
251 getConditionTagAt(FOREVER_CONDITION_INDEX).rb.setChecked(true); in bindConditions()
258 getConditionTagAt(COUNTDOWN_ALARM_CONDITION_INDEX).rb.setChecked(true); in bindConditions()
263 getConditionTagAt(COUNTDOWN_CONDITION_INDEX).rb.setChecked(true); in bindConditions()
339 if (!mAttached || getConditionTagAt(COUNTDOWN_CONDITION_INDEX).condition == null) { in bindGenericCountdown()
H A DZenDurationDialog.java111 ConditionTag tag = getConditionTagAt(checkedRadioButtonId); in updateZenDuration()
174 getConditionTagAt(checkedIndex).rb.setChecked(true); in setupRadioButtons()
209 protected ConditionTag getConditionTagAt(int index) { in getConditionTagAt() method in ZenDurationDialog