Home
last modified time | relevance | path

Searched refs:postTime (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/service/notification/
DStatusBarNotification.java44 private final long postTime; field in StatusBarNotification
58 long postTime) { in StatusBarNotification() argument
70 this.postTime = postTime; in StatusBarNotification()
78 long postTime) { in StatusBarNotification() argument
90 this.postTime = postTime; in StatusBarNotification()
108 this.postTime = in.readLong(); in StatusBarNotification()
178 out.writeLong(this.postTime); in writeToParcel()
213 no, this.user, this.overrideGroupKey, this.postTime); in cloneLight()
220 this.notification.clone(), this.user, this.overrideGroupKey, this.postTime); in clone()
304 return postTime; in getPostTime()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DHeadsUpManager.java386 if (entry != null && mClock.currentTimeMillis() < entry.postTime) { in shouldSwallowClick()
639 public long postTime; field in HeadsUpManager.HeadsUpEntry
649 postTime = mClock.currentTimeMillis() + mTouchAcceptanceDelay; in setEntry()
674 postTime = Math.max(postTime, currentTime); in updateEntry()
684 long finishTime = postTime + mHeadsUpNotificationDecay; in updateEntry()
718 return postTime < o.postTime ? 1 in compareTo()
719 : postTime == o.postTime ? entry.key.compareTo(o.entry.key) in compareTo()