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/bubbles/
DBubbleController.java542 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey);
550 && bubbleChildren != null && !bubbleChildren.isEmpty();
595 ArrayList<Bubble> bubbleChildren = mBubbleData.getBubblesInGroup(groupKey); in handleSummaryRemovalInterception() local
599 for (int i = 0; i < bubbleChildren.size(); i++) { in handleSummaryRemovalInterception()
600 Bubble bubbleChild = bubbleChildren.get(i); in handleSummaryRemovalInterception()
629 for (int i = 0; i < bubbleChildren.size(); i++) { in handleSummaryRemovalInterception()
630 Bubble bubbleChild = bubbleChildren.get(i); in handleSummaryRemovalInterception()
DBubbleData.java288 ArrayList<Bubble> bubbleChildren = new ArrayList<>(); in getBubblesInGroup() local
290 return bubbleChildren; in getBubblesInGroup()
294 bubbleChildren.add(b); in getBubblesInGroup()
297 return bubbleChildren; in getBubblesInGroup()