Home
last modified time | relevance | path

Searched refs:bindParams (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
H A DDynamicChildBindControllerTest.java81 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsOfChildrenBeyondCutoffAreFreed() local
82 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsOfChildrenBeyondCutoffAreFreed()
88 verify(bindParams).markContentViewsFreeable(FLAG_CONTENT_VIEW_CONTRACTED); in testContentViewsOfChildrenBeyondCutoffAreFreed()
89 verify(bindParams).markContentViewsFreeable(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsOfChildrenBeyondCutoffAreFreed()
102 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsBeforeCutoffAreBound() local
103 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsBeforeCutoffAreBound()
109 verify(bindParams).requireContentViews(FLAG_CONTENT_VIEW_CONTRACTED); in testContentViewsBeforeCutoffAreBound()
110 verify(bindParams).requireContentViews(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsBeforeCutoffAreBound()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DRowContentBindStage.java72 BindParams bindParams = new BindParams(); in executeStage() local
73 bindParams.isLowPriority = params.useLowPriority(); in executeStage()
74 bindParams.usesIncreasedHeight = params.useIncreasedHeight(); in executeStage()
75 bindParams.usesIncreasedHeadsUpHeight = params.useIncreasedHeadsUpHeight(); in executeStage()
92 mBinder.bindContent(entry, row, contentToBind, bindParams, forceInflate, inflationCallback); in executeStage()
H A DNotificationContentInflater.java110 BindParams bindParams, in bindContent() argument
143 bindParams.isLowPriority, in bindContent()
144 bindParams.usesIncreasedHeight, in bindContent()
145 bindParams.usesIncreasedHeadsUpHeight, in bindContent()
163 BindParams bindParams, in inflateNotificationViews() argument
171 bindParams.isLowPriority, in inflateNotificationViews()
172 bindParams.usesIncreasedHeight, in inflateNotificationViews()
173 bindParams.usesIncreasedHeadsUpHeight, in inflateNotificationViews()
H A DNotificationRowContentBinder.java48 BindParams bindParams, in bindContent() argument