HomeSort by relevance Sort by last modified time
    Searched refs:mAppRow (Results 1 - 16 of 16) sorted by null

  /packages/apps/Settings/src/com/android/settings/notification/
BlockPreferenceController.java 54 if (mAppRow == null) {
62 return !mAppRow.systemApp || (mAppRow.systemApp && mAppRow.banned);
81 bar.setChecked(!mAppRow.banned
84 bar.setChecked(!mAppRow.banned && !mChannelGroup.isBlocked());
86 bar.setChecked(!mAppRow.banned);
105 if (mBackend.onlyHasDefaultChannel(mAppRow.pkg, mAppRow.uid)) {
106 if (mAppRow.banned != blocked)
    [all...]
BadgePreferenceController.java 52 if (mAppRow == null && mChannel == null) {
63 return mAppRow.showBadge;
70 if (mAppRow != null) {
77 pref.setChecked(mAppRow.showBadge);
88 } else if (mAppRow != null){
89 mAppRow.showBadge = showBadge;
90 mBackend.setShowBadge(mAppRow.pkg, mAppRow.uid, showBadge);
DeletedChannelsPreferenceController.java 49 return mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid) > 0;
53 if (mAppRow != null) {
54 int deletedChannelCount = mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid);
AppLinkPreferenceController.java 47 return mAppRow.settingsIntent != null;
51 if (mAppRow != null) {
52 preference.setIntent(mAppRow.settingsIntent);
NotificationPreferenceController.java 49 protected NotificationBackend.AppRow mAppRow;
71 if (mAppRow == null) {
74 if (mAppRow.banned) {
107 mAppRow = appRow;
127 if (mChannel != null && mAppRow != null) {
128 mBackend.updateChannel(mAppRow.pkg, mAppRow.uid, mChannel);
133 if (mChannel != null && mAppRow != null) {
134 return !Objects.equals(mChannel.getId(), mAppRow.lockedChannelId);
140 if (mChannel != null && mAppRow != null)
    [all...]
HeaderPreferenceController.java 58 return mAppRow != null;
63 if (mAppRow != null && mFragment != null) {
74 pref = mHeaderController.setIcon(mAppRow.icon)
77 .setPackageName(mAppRow.pkg)
78 .setUid(mAppRow.uid)
91 : mAppRow.label;
101 summary.append(bidi.unicodeWrap(mAppRow.label.toString()));
107 return mAppRow.label.toString();
110 return mAppRow.label.toString();
NotificationsOffPreferenceController.java 41 if (mAppRow == null) {
50 if (mAppRow != null) {
NotificationSettingsBase.java 76 protected NotificationBackend.AppRow mAppRow;
126 controller.onResume(mAppRow, mChannel, mChannelGroup, mSuspendedAppsAdmin);
158 if (mUid < 0 || TextUtils.isEmpty(mPkg) || mPkgInfo == null || mAppRow == null) {
167 if (mAppRow == null) {
188 mAppRow = mBackend.loadAppRow(mContext, mPm, mPkgInfo);
192 mShowLegacyChannelConfig = mBackend.onlyHasDefaultChannel(mAppRow.pkg, mAppRow.uid)
198 mAppRow.pkg, mAppRow.uid, NotificationChannel.DEFAULT_CHANNEL_ID);
216 .setPackage(mAppRow.pkg)
    [all...]
DescriptionPreferenceController.java 57 if (mAppRow != null) {
ChannelGroupNotificationSettings.java 43 if (mAppRow == null || mChannelGroup == null) {
51 controller.onResume(mAppRow, mChannel, mChannelGroup, mSuspendedAppsAdmin);
VisibilityPreferenceController.java 61 if (mChannel == null || mAppRow.banned) {
68 if (mChannel != null && mAppRow != null) {
131 mContext, keyguardNotificationFeatures, mAppRow.userId);
AppNotificationSettings.java 111 controller.onResume(mAppRow, mChannel, mChannelGroup, mSuspendedAppsAdmin);
213 mBackend.updateChannelGroup(mAppRow.pkg, mAppRow.uid, group);
ChannelNotificationSettings.java 67 controller.onResume(mAppRow, mChannel, mChannelGroup, mSuspendedAppsAdmin);
SoundPreferenceController.java 73 if (mAppRow!= null && mChannel != null) {
ImportancePreferenceController.java 66 if (mAppRow!= null && mChannel != null) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
NotificationPreferenceControllerTest.java 145 assertEquals(appRow, mController.mAppRow);

Completed in 440 milliseconds