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

  /frameworks/base/core/java/android/service/notification/
NotificationRankingUpdate.java 37 private final Bundle mShowBadge;
54 mShowBadge = showBadge;
69 mShowBadge = in.readBundle();
89 out.writeBundle(mShowBadge);
144 return mShowBadge;
NotificationListenerService.java     [all...]
  /frameworks/base/core/java/android/app/
NotificationChannel.java 145 private boolean mShowBadge = DEFAULT_SHOW_BADGE;
200 mShowBadge = in.readByte() != 0;
245 dest.writeByte(mShowBadge ? (byte) 1 : (byte) 0);
343 this.mShowBadge = showBadge;
535 return mShowBadge;
864 if (mShowBadge != that.mShowBadge) return false;
901 result = 31 * result + (mShowBadge ? 1 : 0);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationRecord.java 132 private boolean mShowBadge;
504 pw.println(prefix + "mShowBadge=" + mShowBadge);
    [all...]

Completed in 91 milliseconds