Home
last modified time | relevance | path

Searched refs:topEntry (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DHeadsUpManagerPhone.java289 ExpandableNotificationRow topEntry = getTopEntry().row; in onComputeInternalInsets() local
290 if (topEntry.isChildInGroup()) { in onComputeInternalInsets()
292 = mGroupManager.getGroupSummary(topEntry.getStatusBarNotification()); in onComputeInternalInsets()
294 topEntry = groupSummary; in onComputeInternalInsets()
297 topEntry.getLocationOnScreen(mTmpTwoArray); in onComputeInternalInsets()
299 int maxX = mTmpTwoArray[0] + topEntry.getWidth(); in onComputeInternalInsets()
300 int height = topEntry.getIntrinsicHeight(); in onComputeInternalInsets()
380 HeadsUpEntryPhone topEntry = getTopHeadsUpEntryPhone(); in wasShownLongEnough() local
381 return headsUpEntry != topEntry || headsUpEntry.wasShownLongEnough(); in wasShownLongEnough()
DHeadsUpTouchHelper.java87 NotificationData.Entry topEntry = mHeadsUpManager.getTopEntry(); in onInterceptTouchEvent() local
88 if (topEntry != null && topEntry.row.isPinned()) { in onInterceptTouchEvent()
89 mPickedChild = topEntry.row; in onInterceptTouchEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DHeadsUpManager.java319 HeadsUpEntry topEntry = getTopHeadsUpEntry(); in getTopEntry() local
320 return (topEntry != null) ? topEntry.entry : null; in getTopEntry()
335 HeadsUpEntry topEntry = null; in getTopHeadsUpEntry() local
337 if (topEntry == null || entry.compareTo(topEntry) < 0) { in getTopHeadsUpEntry()
338 topEntry = entry; in getTopHeadsUpEntry()
341 return topEntry; in getTopHeadsUpEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DNotificationStackScrollLayout.java993 NotificationData.Entry topEntry = mHeadsUpManager.getTopEntry();
994 if (topEntry == null) {
997 ExpandableNotificationRow row = topEntry.row;