Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/wmshell/
DBubblesManager.java536 List<BubbleEntry> bubbleChildren = null; in handleDismissalInterception() local
538 bubbleChildren = new ArrayList<>(); in handleDismissalInterception()
540 bubbleChildren.add(notifToBubbleEntry(children.get(i))); in handleDismissalInterception()
544 return mBubbles.handleDismissalInterception(notifToBubbleEntry(entry), bubbleChildren, in handleDismissalInterception()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleController.java1730 final List<Bubble> bubbleChildren = getBubblesInGroup(groupKey); in onEntryRemoved() local
1731 for (int i = 0; i < bubbleChildren.size(); i++) { in onEntryRemoved()
1732 removeBubble(bubbleChildren.get(i).getKey(), DISMISS_GROUP_CANCELLED); in onEntryRemoved()
1804 ArrayList<Bubble> bubbleChildren = new ArrayList<>(); in getBubblesInGroup() local
1806 return bubbleChildren; in getBubblesInGroup()
1810 bubbleChildren.add(bubble); in getBubblesInGroup()
1813 return bubbleChildren; in getBubblesInGroup()
2146 ArrayList<Bubble> bubbleChildren = getBubblesInGroup(groupKey); in isSummaryOfBubbles() local
2150 return (isSuppressedSummary || isSummary) && !bubbleChildren.isEmpty(); in isSummaryOfBubbles()