Home
last modified time | relevance | path

Searched refs:RowContentBindParams (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/row/
DRowContentBindStageTest.java80 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testRequireContentViews()
97 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testFreeContentViews()
135 RowContentBindParams originalParams = mRowContentBindStage.getStageParams(mEntry); in testGetStageParamsAfterCleanUp()
142 RowContentBindParams blankParams = mRowContentBindStage.getStageParams(mEntry); in testGetStageParamsAfterCleanUp()
161 RowContentBindParams nullParams = mRowContentBindStage.tryGetStageParams(mEntry); in testTryGetStageParamsAfterCleanUp()
173 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testRebindAllContentViews()
195 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testSetUseLowPriority()
219 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testSetUseIncreasedHeight()
243 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testSetUseIncreasedHeadsUpHeight()
267 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in testSetNeedsReinflation()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DDynamicChildBindControllerTest.java42 import com.android.systemui.statusbar.notification.row.RowContentBindParams;
74 when(mBindStage.getStageParams(any())).thenReturn(new RowContentBindParams()); in setUp()
85 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsOfChildrenBeyondCutoffAreFreed()
106 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsBeforeCutoffAreBound()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DRowContentBindStage.java38 public class RowContentBindStage extends BindStage<RowContentBindParams> {
58 RowContentBindParams params = getStageParams(entry); in executeStage()
109 protected RowContentBindParams newStageParams() { in newStageParams()
110 return new RowContentBindParams(); in newStageParams()
DRowContentBindStageLogger.kt29 fun logExecutingStage(entry: NotificationEntry, stageParams: RowContentBindParams) { in logExecutingStage()
DRowContentBindParams.java28 public final class RowContentBindParams { class
DExpandableNotificationRow.java557 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry); in freeContentViewWhenSafe()
1399 RowContentBindParams params = mRowContentBindStage.getStageParams(mEntry);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DDynamicChildBindController.java26 import com.android.systemui.statusbar.notification.row.RowContentBindParams;
105 RowContentBindParams params = mStage.getStageParams(entry); in freeContent()
112 RowContentBindParams params = mStage.getStageParams(entry); in bindContent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
DHeadsUpViewBinder.java32 import com.android.systemui.statusbar.notification.row.RowContentBindParams;
77 RowContentBindParams params = mStage.getStageParams(entry); in bindHeadsUpView()
122 RowContentBindParams params = mStage.tryGetStageParams(entry); in unbindHeadsUpView()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/interruption/
DHeadsUpViewBinderTest.java39 import com.android.systemui.statusbar.notification.row.RowContentBindParams;
67 when(mBindStage.getStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in setup()
98 when(mBindStage.tryGetStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in testLoggingForStandardFlow()
148 when(mBindStage.tryGetStageParams(eq(mEntry))).thenReturn(new RowContentBindParams()); in testLoggingForEarlyUnbindFlow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/inflation/
DNotificationRowBinderImpl.java51 import com.android.systemui.statusbar.notification.row.RowContentBindParams;
180 final RowContentBindParams params = mRowContentBindStage.getStageParams(entry); in releaseViews()
251 RowContentBindParams params = mRowContentBindStage.getStageParams(entry); in inflateContentViews()