Home
last modified time | relevance | path

Searched refs:mBindStage (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicChildBindControllerTest.java62 @Mock private RowContentBindStage mBindStage; field in DynamicChildBindControllerTest
68 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setUp()
70 new DynamicChildBindController(mBindStage, TEST_CHILD_BIND_CUTOFF); in setUp()
80 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsOfChildrenBeyondCutoffAreFreed()
88 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsOfChildrenBeyondCutoffAreFreed()
101 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsBeforeCutoffAreBound()
109 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsBeforeCutoffAreBound()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupAlertTransferHelperTest.java74 @Mock private RowContentBindStage mBindStage; field in NotificationGroupAlertTransferHelperTest
97 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setup()
99 mGroupAlertTransferHelper = new NotificationGroupAlertTransferHelper(mBindStage); in setup()
116 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransfersToChild()
182 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransferDoesNotAlertChildIfUninflated()
200 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransferAlertsChildOnInflation()
207 verify(mBindStage).requestRebind(eq(childEntry), callbackCaptor.capture()); in testSuppressedSummaryHeadsUpTransferAlertsChildOnInflation()
222 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation()
238 verify(mBindStage).requestRebind(eq(childEntry), callbackCaptor.capture()); in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation()
252 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testCleanUpPendingAlertInfo()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java103 private final RowContentBindStage mBindStage; field in NotificationTestHelper
138 mBindStage = new RowContentBindStage(contentBinder, in NotificationTestHelper()
148 mBindPipeline.setStage(mBindStage); in NotificationTestHelper()
419 mBindStage, in generateRow()
427 mBindStage.getStageParams(entry).requireContentViews(extraInflationFlags); in generateRow()
439 mBindStage.requestRebind(entry, en -> countDownLatch.countDown()); in inflateAndWait()