Home | History | Annotate | Download | only in wm

Lines Matching refs:height1

489             int height1;
494 height1 = Math.min(height, Math.round((float)width1 / MIN_ASPECT));
495 if (height1 < mMinVisibleHeight) {
497 height1 = mMinVisibleHeight;
499 Math.min(mMaxVisibleSize.x, Math.round((float)height1 * MIN_ASPECT)));
513 height1 = Math.max(height, Math.round((float)width1 * MIN_ASPECT));
514 if (height1 < mMinVisibleHeight) {
516 height1 = mMinVisibleHeight;
518 Math.min(mMaxVisibleSize.x, Math.round((float)height1 / MIN_ASPECT)));
534 if (grows == (width1 * height1 > width2 * height2)) {
536 height = height1;