Home
last modified time | relevance | path

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

/frameworks/support/v4/java/android/support/v4/widget/
DSlidingPaneLayout.java476 int layoutHeight = 0; in onMeasure() local
480 layoutHeight = maxLayoutHeight = heightSize - getPaddingTop() - getPaddingBottom(); in onMeasure()
544 if (heightMode == MeasureSpec.AT_MOST && childHeight > layoutHeight) { in onMeasure()
545 layoutHeight = Math.min(childHeight, maxLayoutHeight); in onMeasure()
641 final int measuredHeight = layoutHeight + getPaddingTop() + getPaddingBottom(); in onMeasure()
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java755 final int layoutHeight = getHeight(); in onLayout() local
758 mCropSize = Math.min(sCropSize, Math.min(layoutWidth, layoutHeight)); in onLayout()
760 final int cropTop = (layoutHeight - mCropSize) / 2; in onLayout()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
DStackScrollAlgorithm.java714 public void setLayoutHeight(int layoutHeight) { in setLayoutHeight() argument
715 this.mLayoutHeight = layoutHeight; in setLayoutHeight()