Searched refs:scaleH (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppTransition.java | 604 float scaleH = mTmpRect.height() / (float) appHeight; in createScaleUpAnimationLocked() local 605 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1, in createScaleUpAnimationLocked() 607 computePivot(mTmpRect.right, scaleH)); in createScaleUpAnimationLocked() 1194 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth; in createAspectScaledThumbnailFreeformAnimationLocked() local 1206 new ScaleAnimation(scaleH, 1, scaleV, 1, scaleHCenter, scaleVCenter) in createAspectScaledThumbnailFreeformAnimationLocked() 1207 : new ScaleAnimation(1, scaleH, 1, scaleV, scaleHCenter, scaleVCenter); in createAspectScaledThumbnailFreeformAnimationLocked() 1253 float scaleH = appHeight / thumbHeight; in createThumbnailScaleAnimationLocked() local 1254 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH, in createThumbnailScaleAnimationLocked() 1256 computePivot(mTmpRect.top, 1 / scaleH)); in createThumbnailScaleAnimationLocked() 1270 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 | 905 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout() local 906 final int monthHeight = (int) (mDesiredMonthHeight * scaleH); in onLayout() 909 mDayOfWeekHeight = (int) (mDesiredDayOfWeekHeight * scaleH); in onLayout() 910 mDayHeight = (int) (mDesiredDayHeight * scaleH); in onLayout()
|