Home
last modified time | relevance | path

Searched refs:childRow (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationBlockingHelperManagerTest.java146 for (ExpandableNotificationRow childRow : groupRow.getAttachedChildren()) { in testPerhapsShowBlockingHelper_notShownForMultiChannelGroup()
147 modifyRanking(childRow.getEntry()) in testPerhapsShowBlockingHelper_notShownForMultiChannelGroup()
182 ExpandableNotificationRow childRow = groupRow.getChildrenContainer().getViewAtPosition(0); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification() local
183 modifyRanking(childRow.getEntry()) in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
186 assertFalse(childRow.getIsNonblockable()); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
188 when(mGroupMembershipManager.isOnlyChildInGroup(childRow.getEntry())).thenReturn(true); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
189 assertTrue(mBlockingHelperManager.perhapsShowBlockingHelper(childRow, mMenuRow)); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
191 verify(mGutsManager).openGuts(childRow, 0, 0, mMenuItem); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
245 ExpandableNotificationRow childRow = groupRow.getChildrenContainer().getViewAtPosition(0); in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup() local
246 modifyRanking(childRow.getEntry()) in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
[all …]
DExpandableNotificationRowTest.java278 for (ExpandableNotificationRow childRow : childRows) { in testGetNumUniqueChildren_multiChannel()
279 modifyRanking(childRow.getEntry()) in testGetNumUniqueChildren_multiChannel()
DNotificationTestHelper.java220 ExpandableNotificationRow childRow = createGroupChild(GROUP_KEY); in createGroup() local
221 row.addChildNotification(childRow); in createGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java402 for (ExpandableNotificationRow childRow : children) { in removeNotificationChildren()
404 || !orderedChildren.contains(childRow.getEntry())) in removeNotificationChildren()
405 && !childRow.keepInParent()) { in removeNotificationChildren()
406 toRemove.add(childRow); in removeNotificationChildren()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java580 for (ExpandableNotificationRow childRow : children) { in resetViewState()
581 childRow.resetViewState(); in resetViewState()
DExpandableNotificationRow.java2425 final ExpandableNotificationRow childRow = childrenRows.get(i);
2426 final NotificationChannel childChannel = childRow.getEntry().getChannel();
2427 final StatusBarNotification childSbn = childRow.getEntry().getSbn();
2916 public int getPositionOfChild(ExpandableNotificationRow childRow) {
2918 return mChildrenContainer.getPositionInLinearLayout(childRow);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java259 for (ExpandableNotificationRow childRow : children) { in initAlgorithmState()
260 if (childRow.getVisibility() != View.GONE) { in initAlgorithmState()
261 ExpandableViewState childState = childRow.getViewState(); in initAlgorithmState()
DNotificationStackScrollLayout.java4977 for (ExpandableNotificationRow childRow : children) { in clearNotifications()
4979 viewsToRemove.add(childRow); in clearNotifications()
4981 hasClipBounds = childRow.getClipBounds(mTmpRect); in clearNotifications()
4982 if (childRow.getVisibility() == View.VISIBLE in clearNotifications()
4984 viewsToHide.add(childRow); in clearNotifications()