Searched refs:bindParams (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/ |
D | DynamicChildBindControllerTest.java | 79 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsOfChildrenBeyondCutoffAreFreed() local 80 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsOfChildrenBeyondCutoffAreFreed() 86 verify(bindParams).markContentViewsFreeable(FLAG_CONTENT_VIEW_CONTRACTED); in testContentViewsOfChildrenBeyondCutoffAreFreed() 87 verify(bindParams).markContentViewsFreeable(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsOfChildrenBeyondCutoffAreFreed() 100 RowContentBindParams bindParams = mock(RowContentBindParams.class); in testContentViewsBeforeCutoffAreBound() local 101 when(mBindStage.getStageParams(lastChild)).thenReturn(bindParams); in testContentViewsBeforeCutoffAreBound() 107 verify(bindParams).requireContentViews(FLAG_CONTENT_VIEW_CONTRACTED); in testContentViewsBeforeCutoffAreBound() 108 verify(bindParams).requireContentViews(FLAG_CONTENT_VIEW_EXPANDED); in testContentViewsBeforeCutoffAreBound()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | RowContentBindStage.java | 72 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()
|
D | NotificationContentInflater.java | 102 BindParams bindParams, in bindContent() argument 134 bindParams.isLowPriority, in bindContent() 135 bindParams.usesIncreasedHeight, in bindContent() 136 bindParams.usesIncreasedHeadsUpHeight, in bindContent() 150 BindParams bindParams, in inflateNotificationViews() argument 157 bindParams.isLowPriority, in inflateNotificationViews() 158 bindParams.usesIncreasedHeight, in inflateNotificationViews() 159 bindParams.usesIncreasedHeadsUpHeight, in inflateNotificationViews()
|
D | NotificationRowContentBinder.java | 48 BindParams bindParams, in bindContent() argument
|