Home
last modified time | relevance | path

Searched refs:SHOW_NOTIFICATION_SNOOZE (Results 1 – 7 of 7) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/inflation/
H A DNotifUiAdjustmentProviderTest.kt20 import android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE
55 private val uri = FakeSettings().getUriFor(SHOW_NOTIFICATION_SNOOZE)
79 verify(secureSettings).getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any())
82 eq(SHOW_NOTIFICATION_SNOOZE), capture(), any()
111 verify(secureSettings).getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any())
118 whenever(secureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any()))
123 whenever(secureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), any(), any()))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
H A DNotifUiAdjustmentProvider.kt24 import android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE
69 SHOW_NOTIFICATION_SNOOZE,
99 secureSettings.getIntForUser(SHOW_NOTIFICATION_SNOOZE, 0, UserHandle.USER_CURRENT) == 1
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DPreparationCoordinatorTest.java19 import static android.provider.Settings.Secure.SHOW_NOTIFICATION_SNOOZE;
308 when(mSecureSettings.getIntForUser(eq(SHOW_NOTIFICATION_SNOOZE), anyInt(), anyInt())) in testEntryCancellationWillRebindViews()
312 verify(mSecureSettings).registerContentObserverForUser(eq(SHOW_NOTIFICATION_SNOOZE), in testEntryCancellationWillRebindViews()
/aosp14/frameworks/base/packages/SettingsProvider/src/android/provider/settings/backup/
H A DSecureSettings.java155 Settings.Secure.SHOW_NOTIFICATION_SNOOZE,
/aosp14/frameworks/base/packages/SettingsProvider/src/android/provider/settings/validators/
H A DSecureSettingsValidators.java232 VALIDATORS.put(Secure.SHOW_NOTIFICATION_SNOOZE, BOOLEAN_VALIDATOR); in VALIDATORS.put() argument
/aosp14/frameworks/base/core/java/android/provider/
H A DSettings.java10024 public static final String SHOW_NOTIFICATION_SNOOZE = "show_notification_snooze"; field in Settings.Secure
/aosp14/frameworks/base/core/java/android/app/
H A DNotification.java5788 Settings.Secure.SHOW_NOTIFICATION_SNOOZE, 0, UserHandle.USER_CURRENT) == 1; in isSnoozeSettingEnabled()