Home
last modified time | relevance | path

Searched refs:mNotificationsPreference (Results 1 – 3 of 3) sorted by relevance

/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/device/apps/
DNotificationsPreferenceTest.java71 private NotificationsPreference mNotificationsPreference; field in NotificationsPreferenceTest
97 mNotificationsPreference = new NotificationsPreference(mContext, mAppEntry); in testNotificationsPreference_systemAppNotificationsEnabledInRes()
99 mNotificationsPreference.refresh(); in testNotificationsPreference_systemAppNotificationsEnabledInRes()
101 assertFalse(mNotificationsPreference.isEnabled()); in testNotificationsPreference_systemAppNotificationsEnabledInRes()
109 mNotificationsPreference = new NotificationsPreference(mContext, mAppEntry); in testNotificationsPreference_systemAppNotificationsEnabledNotInRes()
111 mNotificationsPreference.refresh(); in testNotificationsPreference_systemAppNotificationsEnabledNotInRes()
113 assertFalse(mNotificationsPreference.isEnabled()); in testNotificationsPreference_systemAppNotificationsEnabledNotInRes()
121 mNotificationsPreference = new NotificationsPreference(mContext, mAppEntry); in testNotificationsPreference_notSystemAppNotificationsEnabledInRes()
123 mNotificationsPreference.refresh(); in testNotificationsPreference_notSystemAppNotificationsEnabledInRes()
125 assertFalse(mNotificationsPreference.isEnabled()); in testNotificationsPreference_notSystemAppNotificationsEnabledInRes()
[all …]
/packages/apps/Settings/src/com/android/settings/notification/zen/
DZenCustomRuleConfigSettings.java47 private Preference mNotificationsPreference; field in ZenCustomRuleConfigSettings
83 mNotificationsPreference = getPreferenceScreen().findPreference(NOTIFICATIONS_KEY); in onCreate()
84 mNotificationsPreference.setOnPreferenceClickListener( in onCreate()
116 mNotificationsPreference.setSummary(mSummaryBuilder.getBlockedEffectsSummary(noManPolicy)); in updateSummaries()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DAppManagementFragment.java96 private NotificationsPreference mNotificationsPreference; field in AppManagementFragment
349 if (mNotificationsPreference == null) { in updatePrefs()
350 mNotificationsPreference = new NotificationsPreference(themedContext, mEntry); in updatePrefs()
351 mNotificationsPreference.setKey(KEY_NOTIFICATIONS); in updatePrefs()
352 replacePreference(mNotificationsPreference); in updatePrefs()
354 mNotificationsPreference.setEntry(mEntry); in updatePrefs()