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 assertTrue(mBlockingHelperManager.perhapsShowBlockingHelper(childRow, mMenuRow)); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
190 verify(mGutsManager).openGuts(childRow, 0, 0, mMenuItem); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
244 ExpandableNotificationRow childRow = groupRow.getChildrenContainer().getViewAtPosition(0); in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup() local
245 modifyRanking(childRow.getEntry()) in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
249 assertFalse(mBlockingHelperManager.perhapsShowBlockingHelper(childRow, mMenuRow)); in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
DExpandableNotificationRowTest.java274 ExpandableNotificationRow childRow = mGroupRow.getChildrenContainer().getViewAtPosition(0); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary() local
275 …when(mBlockingHelperManager.perhapsShowBlockingHelper(eq(childRow), any(NotificationMenuRowPlugin.… in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
279 childRow.performDismissWithBlockingHelper(false /* fromAccessibility */)); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
282 .perhapsShowBlockingHelper(eq(childRow), any(NotificationMenuRowPlugin.class)); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
307 for (ExpandableNotificationRow childRow : childRows) { in testGetNumUniqueChildren_multiChannel()
308 modifyRanking(childRow.getEntry()) in testGetNumUniqueChildren_multiChannel()
DNotificationTestHelper.java211 ExpandableNotificationRow childRow = createGroupChild(GROUP_KEY); in createGroup() local
212 row.addChildNotification(childRow); in createGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java382 for (ExpandableNotificationRow childRow : children) { in removeNotificationChildren()
384 || !orderedChildren.contains(childRow.getEntry())) in removeNotificationChildren()
385 && !childRow.keepInParent()) { in removeNotificationChildren()
386 toRemove.add(childRow); in removeNotificationChildren()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java597 for (ExpandableNotificationRow childRow : children) { in resetViewState()
598 childRow.resetViewState(); in resetViewState()
DExpandableNotificationRow.java2396 final ExpandableNotificationRow childRow = childrenRows.get(i);
2397 final NotificationChannel childChannel = childRow.getEntry().getChannel();
2398 final StatusBarNotification childSbn = childRow.getEntry().getSbn();
2883 public int getPositionOfChild(ExpandableNotificationRow childRow) {
2885 return mChildrenContainer.getPositionInLinearLayout(childRow);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java303 for (ExpandableNotificationRow childRow : children) { in initAlgorithmState()
304 if (childRow.getVisibility() != View.GONE) { in initAlgorithmState()
305 ExpandableViewState childState = childRow.getViewState(); in initAlgorithmState()
DNotificationStackScrollLayout.java5675 for (ExpandableNotificationRow childRow : children) {
5677 viewsToRemove.add(childRow);
5679 hasClipBounds = childRow.getClipBounds(mTmpRect);
5680 if (childRow.getVisibility() == View.VISIBLE
5682 viewsToHide.add(childRow);