Searched refs:mBindStage (Results 1 – 3 of 3) sorted by relevance
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/ |
H A D | HeadsUpViewBinderTest.java | 55 @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()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
H A D | DynamicChildBindControllerTest.java | 63 @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()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationTestHelper.java | 130 private final RowContentBindStage mBindStage; field in NotificationTestHelper 181 mBindStage = new RowContentBindStage(contentBinder, in NotificationTestHelper() 191 mBindPipeline.setStage(mBindStage); in NotificationTestHelper() 600 mBindStage, in generateRow() 619 mBindStage.getStageParams(entry).requireContentViews(extraInflationFlags); in generateRow() 627 mBindStage.requestRebind(entry, en -> countDownLatch.countDown()); in inflateAndWait()
|