Searched refs:scaleW (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/com/android/internal/policy/ |
D | TransitionAnimation.java | 596 float scaleW = mTmpRect.width() / (float) appWidth; in createScaleUpAnimationLockedCompat() local 598 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1, in createScaleUpAnimationLockedCompat() 599 computePivot(mTmpRect.left, scaleW), in createScaleUpAnimationLockedCompat() 671 float scaleW = thumbWidth / appWidth; in createThumbnailEnterExitAnimationLockedCompat() local 673 a = new ScaleAnimation(scaleW, 1, scaleH, 1, in createThumbnailEnterExitAnimationLockedCompat() 674 computePivot(mTmpRect.left, scaleW), in createThumbnailEnterExitAnimationLockedCompat() 699 float scaleW = thumbWidth / appWidth; in createThumbnailEnterExitAnimationLockedCompat() local 701 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH, in createThumbnailEnterExitAnimationLockedCompat() 702 computePivot(mTmpRect.left, scaleW), in createThumbnailEnterExitAnimationLockedCompat() 868 float scaleW = appWidth / thumbWidth; in createThumbnailAspectScaleAnimationLocked() local [all …]
|
/frameworks/opt/photoviewer/src/com/android/ex/photo/ |
D | PhotoViewController.java | 1002 final float scaleW = (float) mAnimationStartWidth / totalWidth; in runEnterAnimation() local 1004 final float scale = Math.max(scaleW, scaleY); in runEnterAnimation() 1092 final float scaleW = (float) mAnimationStartWidth / totalWidth; in runExitAnimation() local 1094 final float scale = Math.max(scaleW, scaleY); in runExitAnimation()
|