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.java63 @Mock private RowContentBindStage mBindStage; field in DynamicChildBindControllerTest
70 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setUp()
72 new DynamicChildBindController(mBindStage, TEST_CHILD_BIND_CUTOFF); in setUp()
82 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsOfChildrenBeyondCutoffAreFreed()
90 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsOfChildrenBeyondCutoffAreFreed()
103 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsBeforeCutoffAreBound()
111 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsBeforeCutoffAreBound()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupAlertTransferHelperTest.java76 @Mock private RowContentBindStage mBindStage; field in NotificationGroupAlertTransferHelperTest
100 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setup()
102 mGroupAlertTransferHelper = new NotificationGroupAlertTransferHelper(mBindStage); in setup()
117 when(mBindStage.getStageParams(eq(entry))).thenReturn(params); in mockHasHeadsUpContentView()
224 verify(mBindStage).requestRebind(eq(childEntry), callbackCaptor.capture()); in testSuppressedSummaryHeadsUpTransferAlertsChildOnInflation()
239 when(mBindStage.getStageParams(eq(childEntry))).thenReturn(params); in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation()
255 verify(mBindStage).requestRebind(eq(childEntry), callbackCaptor.capture()); in testSuppressedSummaryHeadsUpTransferBackAbortsChildInflation()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java110 private final RowContentBindStage mBindStage; field in NotificationTestHelper
147 mBindStage = new RowContentBindStage(contentBinder, in NotificationTestHelper()
157 mBindPipeline.setStage(mBindStage); in NotificationTestHelper()
465 mBindStage, in generateRow()
478 mBindStage.getStageParams(entry).requireContentViews(extraInflationFlags); in generateRow()
490 mBindStage.requestRebind(entry, en -> countDownLatch.countDown()); in inflateAndWait()