Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
DExpandableView.java73 int ownMaxHeight = Integer.MAX_VALUE; in onMeasure() local
76 ownMaxHeight = Math.min(givenSize, ownMaxHeight); in onMeasure()
78 int newHeightSpec = MeasureSpec.makeMeasureSpec(ownMaxHeight, MeasureSpec.AT_MOST); in onMeasure()
91 childHeightSpec = layoutParams.height > ownMaxHeight in onMeasure()
92 ? MeasureSpec.makeMeasureSpec(ownMaxHeight, MeasureSpec.EXACTLY) in onMeasure()
105 ? givenSize : Math.min(ownMaxHeight, maxChildHeight); in onMeasure()