Home | History | Annotate | Download | only in wm

Lines Matching defs:mMinVisibleHeight

102     private int mMinVisibleHeight;
298 mMinVisibleHeight = dipToPixel(MINIMUM_VISIBLE_HEIGHT_IN_DP, mDisplayMetrics);
476 height = Math.max(mMinVisibleHeight, height - deltaY);
478 height = Math.max(mMinVisibleHeight, height + deltaY);
495 if (height1 < mMinVisibleHeight) {
497 height1 = mMinVisibleHeight;
502 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
507 height2 = Math.max(mMinVisibleHeight,
514 if (height1 < mMinVisibleHeight) {
516 height1 = mMinVisibleHeight;
521 height2 = Math.max(mMinVisibleHeight, Math.min(mMaxVisibleSize.y, height));
526 height2 = Math.max(mMinVisibleHeight,
591 if (mMinVisibleWidth > bounds.width() || mMinVisibleHeight > bounds.height()) {
594 + mMinVisibleHeight + ", " + bounds.height() + ")");
612 // Vertically, the top mMinVisibleHeight of the window should remain visible.
615 final int maxTop = stackBounds.bottom - mMinVisibleHeight;