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/interruption/
DHeadsUpViewBinderTest.java55 @Mock private RowContentBindStage mBindStage; field in HeadsUpViewBinderTest
64 mViewBinder = new HeadsUpViewBinder(mNotificationMessagingUtil, mBindStage, mLogger); in setup()
67 when(mBindStage.getStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in setup()
73 when(mBindStage.requestRebind(any(), any())).then(i -> { in testLoggingForStandardFlow()
98 when(mBindStage.tryGetStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in testLoggingForStandardFlow()
114 when(mBindStage.requestRebind(any(), any())).then(i -> { in testLoggingForAbortFlow()
138 when(mBindStage.requestRebind(any(), any())).then(i -> { in testLoggingForEarlyUnbindFlow()
148 when(mBindStage.tryGetStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in testLoggingForEarlyUnbindFlow()
165 when(mBindStage.requestRebind(any(), any())).then(i -> { in testLoggingForLateUnbindFlow()
180 when(mBindStage.tryGetStageParams(eq(mEntry))).thenReturn(null); in testLoggingForLateUnbindFlow()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicChildBindControllerTest.java67 @Mock private RowContentBindStage mBindStage; field in DynamicChildBindControllerTest
74 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setUp()
76 new DynamicChildBindController(mBindStage, TEST_CHILD_BIND_CUTOFF); in setUp()
86 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsOfChildrenBeyondCutoffAreFreed()
94 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsOfChildrenBeyondCutoffAreFreed()
107 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsBeforeCutoffAreBound()
115 verify(mBindStage).requestRebind(eq(lastChild), any()); in testContentViewsBeforeCutoffAreBound()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DNotificationTestHelper.java141 private final RowContentBindStage mBindStage; field in NotificationTestHelper
218 mBindStage = new RowContentBindStage(contentBinder, in NotificationTestHelper()
245 mBindPipeline.setStage(mBindStage); in NotificationTestHelper()
656 mBindStage, in generateRow()
675 mBindStage.getStageParams(entry).requireContentViews(extraInflationFlags); in generateRow()
683 mBindStage.requestRebind(entry, en -> countDownLatch.countDown()); in inflateAndWait()