Searched refs:scaleH (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppTransition.java | 673 float scaleH = mTmpRect.height() / (float) appHeight; in createScaleUpAnimationLocked() local 674 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1, in createScaleUpAnimationLocked() 676 computePivot(mTmpRect.top, scaleH)); in createScaleUpAnimationLocked() 1319 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth; in createAspectScaledThumbnailFreeformAnimationLocked() local 1331 new ScaleAnimation(scaleH, 1, scaleV, 1, scaleHCenter, scaleVCenter) in createAspectScaledThumbnailFreeformAnimationLocked() 1332 : new ScaleAnimation(1, scaleH, 1, scaleV, scaleHCenter, scaleVCenter); in createAspectScaledThumbnailFreeformAnimationLocked() 1378 float scaleH = appHeight / thumbHeight; in createThumbnailScaleAnimationLocked() local 1379 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH, in createThumbnailScaleAnimationLocked() 1381 computePivot(mTmpRect.top, 1 / scaleH)); in createThumbnailScaleAnimationLocked() 1395 float scaleH = appHeight / thumbHeight; in createThumbnailScaleAnimationLocked() local [all …]
|
/frameworks/base/core/java/android/hardware/camera2/legacy/ |
D | ParameterUtils.java | 806 float scaleH = (NORMALIZED_RECTANGLE_MAX - NORMALIZED_RECTANGLE_MIN) * 1.0f / in convertMeteringRectangleToLegacy() local 814 transform.postScale(scaleW, scaleH); in convertMeteringRectangleToLegacy() 963 float scaleH = previewCrop.height() * 1.0f / in convertCameraAreaToActiveArrayRectangle() local 976 transform.postScale(scaleW, scaleH); in convertCameraAreaToActiveArrayRectangle()
|
/frameworks/base/core/java/android/widget/ |
D | SimpleMonthView.java | 910 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout() local 911 final int monthHeight = (int) (mDesiredMonthHeight * scaleH); in onLayout() 914 mDayOfWeekHeight = (int) (mDesiredDayOfWeekHeight * scaleH); in onLayout() 915 mDayHeight = (int) (mDesiredDayHeight * scaleH); in onLayout()
|