Home
last modified time | relevance | path

Searched refs:startScale (Results 1 – 10 of 10) sorted by relevance

/frameworks/base/core/java/android/content/res/
DFontScaleConverterFactory.java207 float startScale = getScaleFromKey(sLookupTables.keyAt(lowerIndex)); in forScale() local
212 startScale, in forScale()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/activityembedding/
DActivityEmbeddingAnimationSpec.java174 final Animation startScale = new ScaleAnimation(startScaleX, startScaleX, startScaleY, in createChangeBoundsChangeAnimations() local
176 startScale.setInterpolator(mFastOutExtraSlowInInterpolator); in createChangeBoundsChangeAnimations()
177 startScale.setDuration(CHANGE_ANIMATION_DURATION); in createChangeBoundsChangeAnimations()
178 startSet.addAnimation(startScale); in createChangeBoundsChangeAnimations()
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
DTaskFragmentAnimationSpec.java167 final Animation startScale = new ScaleAnimation(startScaleX, startScaleX, startScaleY, in createChangeBoundsChangeAnimations() local
169 startScale.setInterpolator(mFastOutExtraSlowInInterpolator); in createChangeBoundsChangeAnimations()
170 startScale.setDuration(CHANGE_ANIMATION_DURATION); in createChangeBoundsChangeAnimations()
171 startSet.addAnimation(startScale); in createChangeBoundsChangeAnimations()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/animation/
DTransitionLayoutController.kt254 val startScale = widgetStart.scale in getInterpolatedState() constant
256 startScale, in getInterpolatedState()
257 startScale * GONE_SCALE_AMOUNT, in getInterpolatedState()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/pip/
DPipSurfaceTransactionHelper.java104 final float startScale = sourceRectHint.width() <= sourceRectHint.height() in scaleAndCrop() local
107 scale = Math.min((1 - progress) * startScale + progress * endScale, 1.0f); in scaleAndCrop()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip2/
DPipSurfaceTransactionHelper.java147 final float startScale = sourceBounds.width() <= sourceBounds.height() in scaleAndCrop() local
150 scale = (1 - fraction) * startScale + fraction * endScale; in scaleAndCrop()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPipSurfaceTransactionHelper.java147 final float startScale = sourceBounds.width() <= sourceBounds.height() in scaleAndCrop() local
150 scale = (1 - fraction) * startScale + fraction * endScale; in scaleAndCrop()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java502 float startTranslationY, float endTranslationY, float startScale, float endScale, in startCellStateAnimation() argument
507 endTranslationY, startScale, endScale, delay, duration, interpolator, in startCellStateAnimation()
511 endTranslationY, startScale, endScale, delay, duration, interpolator, in startCellStateAnimation()
519 final float startScale, final float endScale, in startCellStateAnimationSw() argument
523 cellState.radius = mDotSize/2 * startScale; in startCellStateAnimationSw()
534 cellState.radius = mDotSize/2 * ((1 - t) * startScale + t * endScale); in startCellStateAnimationSw()
552 float startScale, float endScale, in startCellStateAnimationHw() argument
561 cellState.hwRadius = CanvasProperty.createFloat(mDotSize/2 * startScale); in startCellStateAnimationHw()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/desktopmode/
DDragToDesktopTransitionHandler.kt518 val startScale = state.dragAnimator.scale in <lambda>() constant
548 val animScale = startScale + animFraction * (1 - startScale) in <lambda>()
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DPhotoView.java1184 public boolean start(float startScale, float targetScale, float centerX, float centerY) { in start() argument
1195 mStartScale = startScale; in start()