/aosp12/frameworks/base/core/java/android/transition/ |
H A D | Visibility.java | 193 TransitionValues endValues) { in getVisibilityChangeInfo() argument 204 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo() 211 if (startValues != null && endValues != null) { in getVisibilityChangeInfo() 247 TransitionValues endValues) { in createAnimator() argument 253 endValues, visInfo.endVisibility); in createAnimator() 256 endValues, visInfo.endVisibility in createAnimator() 283 TransitionValues endValues, int endVisibility) { in onAppear() argument 299 return onAppear(sceneRoot, endValues.view, startValues, endValues); in onAppear() 318 TransitionValues endValues) { in onAppear() argument 369 final View endView = (endValues != null) ? endValues.view : null; in onDisappear() [all …]
|
H A D | ChangeTransform.java | 228 TransitionValues endValues) { in createAnimator() argument 229 if (startValues == null || endValues == null || in createAnimator() 231 !endValues.values.containsKey(PROPNAME_PARENT)) { in createAnimator() 252 setMatricesForParent(startValues, endValues); in createAnimator() 260 createGhostView(sceneRoot, startValues, endValues); in createAnimator() 286 final View view = endValues.view; in createTransformAnimator() 361 if (endValues != null) { in parentsMatch() 362 parentsMatch = endParent == endValues.view; in parentsMatch() 369 TransitionValues endValues) { in createGhostView() argument 370 View view = endValues.view; in createGhostView() [all …]
|
H A D | ChangeClipBounds.java | 80 TransitionValues endValues) { in createAnimator() argument 81 if (startValues == null || endValues == null in createAnimator() 83 || !endValues.values.containsKey(PROPNAME_CLIP)) { in createAnimator() 87 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 96 end = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 102 endValues.view.setClipBounds(start); in createAnimator() 105 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator() 107 final View endView = endValues.view; in createAnimator()
|
H A D | ChangeScroll.java | 68 TransitionValues endValues) { in createAnimator() argument 69 if (startValues == null || endValues == null) { in createAnimator() 72 final View view = endValues.view; in createAnimator() 74 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X); in createAnimator() 76 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y); in createAnimator()
|
H A D | Rotate.java | 46 TransitionValues endValues) { in createAnimator() argument 47 if (startValues == null || endValues == null) { in createAnimator() 50 final View view = endValues.view; in createAnimator() 52 float endRotation = (Float) endValues.values.get(PROPNAME_ROTATION); in createAnimator()
|
H A D | Recolor.java | 71 TransitionValues endValues) { in createAnimator() argument 72 if (startValues == null || endValues == null) { in createAnimator() 75 final View view = endValues.view; in createAnimator() 77 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND); in createAnimator() 92 int end = (Integer) endValues.values.get(PROPNAME_TEXT_COLOR); in createAnimator()
|
H A D | CircularPropagation.java | 58 TransitionValues startValues, TransitionValues endValues) { in getStartDelay() argument 59 if (startValues == null && endValues == null) { in getStartDelay() 64 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) { in getStartDelay() 68 positionValues = endValues; in getStartDelay()
|
H A D | Transition.java | 474 TransitionValues endValues) { in createAnimator() argument 560 if (startValues != null && endValues != null) { in matchItemIds() 562 mEndValuesList.add(endValues); in matchItemIds() 587 if (startValues != null && endValues != null) { in matchIds() 589 mEndValuesList.add(endValues); in matchIds() 614 if (startValues != null && endValues != null) { in matchNames() 616 mEndValuesList.add(endValues); in matchNames() 651 TransitionValuesMaps endValues) { in matchStartAndEnd() argument 1756 if (startValues == null && endValues == null) { in playTransition() 1796 @Nullable TransitionValues endValues) { in isTransitionRequired() argument [all …]
|
H A D | ChangeBounds.java | 267 TransitionValues endValues = getMatchedTransitionValues(startParent, true); in parentMatches() local 268 if (endValues == null) { in parentMatches() 271 parentMatches = endParent == endValues.view; in parentMatches() 279 TransitionValues endValues) { in createAnimator() argument 280 if (startValues == null || endValues == null) { in createAnimator() 284 Map<String, Object> endParentVals = endValues.values; in createAnimator() 290 final View view = endValues.view; in createAnimator() 293 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 307 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 443 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0]; in createAnimator() [all …]
|
H A D | ChangeImageTransform.java | 140 TransitionValues endValues) { in createAnimator() argument 141 if (startValues == null || endValues == null) { in createAnimator() 145 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 147 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createAnimator() 156 ImageView imageView = (ImageView) endValues.view; in createAnimator()
|
H A D | Explode.java | 81 TransitionValues startValues, TransitionValues endValues) { in onAppear() argument 82 if (endValues == null) { in onAppear() 85 Rect bounds = (Rect) endValues.values.get(PROPNAME_SCREEN_BOUNDS); in onAppear() 92 return TranslationAnimationCreator.createAnimation(view, endValues, bounds.left, bounds.top, in onAppear() 98 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument
|
H A D | SidePropagation.java | 74 TransitionValues startValues, TransitionValues endValues) { in getStartDelay() argument 75 if (startValues == null && endValues == null) { in getStartDelay() 81 if (endValues == null || getViewVisibility(startValues) == View.VISIBLE) { in getStartDelay() 85 positionValues = endValues; in getStartDelay()
|
H A D | Crossfade.java | 168 TransitionValues endValues) { in createAnimator() argument 169 if (startValues == null || endValues == null) { in createAnimator() 173 final View view = endValues.view; in createAnimator() 175 Map<String, Object> endVals = endValues.values; in createAnimator() 220 startValues + ", " + endValues); in createAnimator()
|
H A D | ChangeText.java | 156 TransitionValues endValues) { in createAnimator() argument 157 if (startValues == null || endValues == null || in createAnimator() 158 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) { in createAnimator() 161 final TextView view = (TextView) endValues.view; in createAnimator() 163 Map<String, Object> endVals = endValues.values; in createAnimator()
|
H A D | Slide.java | 235 TransitionValues startValues, TransitionValues endValues) { in onAppear() argument 236 if (endValues == null) { in onAppear() 239 int[] position = (int[]) endValues.values.get(PROPNAME_SCREEN_POSITION); in onAppear() 245 .createAnimation(view, endValues, position[0], position[1], in onAppear() 251 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument
|
H A D | Fade.java | 143 TransitionValues endValues) { in onAppear() argument 158 TransitionValues endValues) { in onDisappear() argument
|
H A D | TransitionPropagation.java | 46 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
|
H A D | TransitionSet.java | 428 TransitionValuesMaps endValues, ArrayList<TransitionValues> startValuesList, in createAnimators() argument 444 childTransition.createAnimators(sceneRoot, startValues, endValues, startValuesList, in createAnimators()
|
/aosp12/frameworks/base/core/java/com/android/internal/transition/ |
H A D | EpicenterTranslateClipReveal.java | 124 TransitionValues startValues, TransitionValues endValues) { in onAppear() argument 125 if (endValues == null) { in onAppear() 129 final Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in onAppear() 133 final float startZ = 0 - (float) endValues.values.get(PROPNAME_Z); in onAppear() 140 final float endX = (float) endValues.values.get(PROPNAME_TRANSLATE_X); in onAppear() 141 final float endY = (float) endValues.values.get(PROPNAME_TRANSLATE_Y); in onAppear() 142 final float endZ = (float) endValues.values.get(PROPNAME_TRANSLATE_Z); in onAppear() 144 final Rect endClip = getBestRect(endValues); in onAppear() 161 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument 166 final Rect startBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in onDisappear() [all …]
|
/aosp12/packages/apps/TV/common/src/com/android/tv/common/ui/setup/animation/ |
H A D | FadeAndShortSlide.java | 223 TransitionValues endValues) { in onAppear() argument 224 if (endValues == null) { in onAppear() 227 int[] position = (int[]) endValues.values.get(PROPNAME_SCREEN_POSITION); in onAppear() 233 view, endValues, left, startX, endX, APPEAR_INTERPOLATOR, this); in onAppear() 239 set.play(slideAnimator).with(mFade.onAppear(sceneRoot, view, startValues, endValues)); in onAppear() 240 Long delay = (Long) endValues.values.get(PROPNAME_DELAY); in onAppear() 252 TransitionValues endValues) { in onDisappear() argument 268 final Animator fadeAnimator = mFade.onDisappear(sceneRoot, view, startValues, endValues); in onDisappear()
|
/aosp12/packages/apps/TV/src/com/android/tv/dvr/ui/ |
H A D | FadeBackground.java | 52 ViewGroup sceneRoot, TransitionValues startValues, TransitionValues endValues) { in createAnimator() argument 53 if (startValues == null || endValues == null) { in createAnimator() 56 Drawable background = endValues.view.getBackground(); in createAnimator()
|
/aosp12/packages/apps/Launcher3/src/com/android/launcher3/graphics/ |
H A D | IconShape.java | 169 float[] endValues = new float[] { 176 float[] values = evaluator.evaluate(progress, startValues, endValues); 277 float[] endValues = new float[] { 284 float[] values = evaluator.evaluate(progress, startValues, endValues);
|
/aosp12/frameworks/base/core/tests/coretests/src/android/transition/ |
H A D | FadeTransitionTest.java | 144 TransitionValues endValues) { in testSnapshotView() 154 return super.onDisappear(sceneRoot, view, startValues, endValues); in testSnapshotView()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | ControlsAnimations.kt | 181 endValues: TransitionValues?
|
/aosp12/packages/apps/TV/src/com/android/tv/ui/ |
H A D | TvTransitionManager.java | 307 ViewGroup sceneRoot, TransitionValues startValues, TransitionValues endValues) { in createAnimator() argument
|