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

  /frameworks/base/core/java/android/service/notification/
NotificationStats.java 38 private boolean mSnoozed;
81 mSnoozed = in.readByte() != 0;
92 dest.writeByte((byte) (mSnoozed ? 1 : 0));
167 return mSnoozed;
174 mSnoozed = true;
225 if (mSnoozed != that.mSnoozed) return false;
236 result = 31 * result + (mSnoozed ? 1 : 0);
249 sb.append(", mSnoozed=").append(mSnoozed);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
MockListener.java 58 ArrayList<String> mSnoozed = new ArrayList<>();
120 mSnoozed.clear();

Completed in 224 milliseconds