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.java140 for (ExpandableNotificationRow childRow : groupRow.getNotificationChildren()) { in testPerhapsShowBlockingHelper_notShownForMultiChannelGroup()
141 childRow.getEntry().channel = in testPerhapsShowBlockingHelper_notShownForMultiChannelGroup()
169 ExpandableNotificationRow childRow = groupRow.getChildrenContainer().getViewAtPosition(0); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification() local
170 childRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
171 assertFalse(childRow.getIsNonblockable()); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
173 assertTrue(mBlockingHelperManager.perhapsShowBlockingHelper(childRow, mMenuRow)); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
175 verify(mGutsManager).openGuts(childRow, 0, 0, mMenuItem); in testPerhapsShowBlockingHelper_shownForOnlyChildNotification()
221 ExpandableNotificationRow childRow = groupRow.getChildrenContainer().getViewAtPosition(0); in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup() local
222 childRow.getEntry().userSentiment = USER_SENTIMENT_NEGATIVE; in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
224 assertFalse(mBlockingHelperManager.perhapsShowBlockingHelper(childRow, mMenuRow)); in testPerhapsShowBlockingHelper_notShownAsNotificationIsInMultipleChildGroup()
DExpandableNotificationRowTest.java302 ExpandableNotificationRow childRow = mGroupRow.getChildrenContainer().getViewAtPosition(0); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary() local
303 …when(mBlockingHelperManager.perhapsShowBlockingHelper(eq(childRow), any(NotificationMenuRowPlugin.… in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
307 childRow.performDismissWithBlockingHelper(false /* fromAccessibility */)); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
310 .perhapsShowBlockingHelper(eq(childRow), any(NotificationMenuRowPlugin.class)); in testPerformDismissWithBlockingHelper_doesntPerformOnGroupSummary()
335 for (ExpandableNotificationRow childRow : childRows) { in testGetNumUniqueChildren_multiChannel()
336 childRow.getEntry().channel = in testGetNumUniqueChildren_multiChannel()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationViewHierarchyManager.java327 for (ExpandableNotificationRow childRow : children) { in removeNotificationChildren()
329 || !orderedChildren.contains(childRow)) in removeNotificationChildren()
330 && !childRow.keepInParent()) { in removeNotificationChildren()
331 toRemove.add(childRow); in removeNotificationChildren()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationTestHelper.java134 ExpandableNotificationRow childRow = createGroupChild(GROUP_KEY); in createGroup() local
135 row.addChildNotification(childRow); in createGroup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java563 for (ExpandableNotificationRow childRow : children) { in resetViewState()
564 childRow.resetViewState(); in resetViewState()
DExpandableNotificationRow.java2424 final ExpandableNotificationRow childRow = childrenRows.get(i);
2425 final NotificationChannel childChannel = childRow.getEntry().channel;
2426 final StatusBarNotification childSbn = childRow.getStatusBarNotification();
2893 public int getPositionOfChild(ExpandableNotificationRow childRow) {
2895 return mChildrenContainer.getPositionInLinearLayout(childRow);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DStackScrollAlgorithm.java316 for (ExpandableNotificationRow childRow : children) { in initAlgorithmState()
317 if (childRow.getVisibility() != View.GONE) { in initAlgorithmState()
318 ExpandableViewState childState = childRow.getViewState(); in initAlgorithmState()
DNotificationStackScrollLayout.java5503 for (ExpandableNotificationRow childRow : children) {
5505 viewsToRemove.add(childRow);
5507 hasClipBounds = childRow.getClipBounds(mTmpRect);
5508 if (childRow.getVisibility() == View.VISIBLE
5510 viewsToHide.add(childRow);