HomeSort by relevance Sort by last modified time
    Searched refs:ownMaxHeight (Results 1 - 2 of 2) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableView.java 55 int ownMaxHeight = Integer.MAX_VALUE;
58 ownMaxHeight = Math.min(givenSize, ownMaxHeight);
60 int newHeightSpec = MeasureSpec.makeMeasureSpec(ownMaxHeight, MeasureSpec.AT_MOST);
73 childHeightSpec = layoutParams.height > ownMaxHeight
74 ? MeasureSpec.makeMeasureSpec(ownMaxHeight, MeasureSpec.EXACTLY)
87 ? givenSize : Math.min(ownMaxHeight, maxChildHeight);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
NotificationChildrenContainer.java 137 int ownMaxHeight = mMaxNotificationHeight;
143 ownMaxHeight = Math.min(ownMaxHeight, size);
145 int newHeightSpec = MeasureSpec.makeMeasureSpec(ownMaxHeight, MeasureSpec.AT_MOST);
    [all...]

Completed in 419 milliseconds