Searched refs:mShowBadge (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java37 private final Bundle mShowBadge; field in class:NotificationRankingUpdate
56 mShowBadge = showBadge;
73 mShowBadge = in.readBundle();
95 out.writeBundle(mShowBadge);
152 return mShowBadge;
H A DNotificationListenerService.java1426 private boolean mShowBadge; field in class:NotificationListenerService.Ranking
1564 return mShowBadge;
1599 mShowBadge = showBadge;
1648 private ArrayMap<String, Boolean> mShowBadge; field in class:NotificationListenerService.RankingMap
1788 if (mShowBadge == null) {
1792 Boolean showBadge = mShowBadge.get(key);
1910 mShowBadge = new ArrayMap<>(showBadge.size());
1912 mShowBadge.put(key, showBadge.getBoolean(key));
/frameworks/base/core/java/android/app/
H A DNotificationChannel.java150 private boolean mShowBadge = DEFAULT_SHOW_BADGE; field in class:NotificationChannel
207 mShowBadge = in.readByte() != 0;
253 dest.writeByte(mShowBadge ? (byte) 1 : (byte) 0);
362 this.mShowBadge = showBadge;
559 return mShowBadge;
900 if (mShowBadge != that.mShowBadge) return false;
937 result = 31 * result + (mShowBadge ? 1 : 0);
961 + ", mShowBadge=" + mShowBadge
[all...]
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationRecord.java152 private boolean mShowBadge; field in class:NotificationRecord
543 pw.println(prefix + "mShowBadge=" + mShowBadge);
914 mShowBadge = showBadge;
918 return mShowBadge;

Completed in 584 milliseconds