Home
last modified time | relevance | path

Searched refs:fromInsets (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/java/android/view/animation/
H A DExtendAnimation.java115 public ExtendAnimation(Insets fromInsets, Insets toInsets) { in ExtendAnimation() argument
116 if (fromInsets == null || toInsets == null) { in ExtendAnimation()
119 mFromLeftValue = -fromInsets.left; in ExtendAnimation()
120 mFromTopValue = -fromInsets.top; in ExtendAnimation()
121 mFromRightValue = -fromInsets.right; in ExtendAnimation()
122 mFromBottomValue = -fromInsets.bottom; in ExtendAnimation()
/aosp14/frameworks/base/core/java/android/view/
H A DInsetsResizeAnimationRunner.java66 final Insets fromInsets = fromState.calculateInsets( in InsetsResizeAnimationRunner() local
71 new Bounds(Insets.min(fromInsets, toInsets), Insets.max(fromInsets, toInsets))); in InsetsResizeAnimationRunner()