/frameworks/base/core/java/android/transition/ |
D | Visibility.java | 195 TransitionValues endValues) { in getVisibilityChangeInfo() argument 206 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo() 207 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY); in getVisibilityChangeInfo() 208 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in getVisibilityChangeInfo() 213 if (startValues != null && endValues != null) { in getVisibilityChangeInfo() 240 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) { in getVisibilityChangeInfo() 251 @Nullable TransitionValues endValues) { in createAnimator() argument 252 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues); in createAnimator() 257 endValues, visInfo.endVisibility); in createAnimator() 260 endValues, visInfo.endVisibility in createAnimator() [all …]
|
D | ChangeClipBounds.java | 84 @Nullable TransitionValues endValues) { in createAnimator() argument 85 if (startValues == null || endValues == null in createAnimator() 87 || !endValues.values.containsKey(PROPNAME_CLIP)) { in createAnimator() 91 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 100 end = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 106 endValues.view.setClipBounds(start); in createAnimator() 109 ObjectAnimator.ofObject(endValues.view, "clipBounds", evaluator, start, end); in createAnimator() 111 final View endView = endValues.view; in createAnimator()
|
D | ChangeTransform.java | 231 @Nullable TransitionValues endValues) { in createAnimator() argument 232 if (startValues == null || endValues == null || in createAnimator() 234 !endValues.values.containsKey(PROPNAME_PARENT)) { in createAnimator() 239 ViewGroup endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in createAnimator() 255 setMatricesForParent(startValues, endValues); in createAnimator() 259 ObjectAnimator transformAnimator = createTransformAnimator(startValues, endValues, in createAnimator() 263 createGhostView(sceneRoot, startValues, endValues); in createAnimator() 270 TransitionValues endValues, final boolean handleParentChange) { in createTransformAnimator() argument 272 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createTransformAnimator() 286 final Transforms transforms = (Transforms) endValues.values.get(PROPNAME_TRANSFORMS); in createTransformAnimator() [all …]
|
D | ChangeScroll.java | 72 @Nullable TransitionValues endValues) { in createAnimator() argument 73 if (startValues == null || endValues == null) { in createAnimator() 76 final View view = endValues.view; in createAnimator() 78 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X); in createAnimator() 80 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y); in createAnimator()
|
D | Rotate.java | 50 @Nullable TransitionValues endValues) { in createAnimator() argument 51 if (startValues == null || endValues == null) { in createAnimator() 54 final View view = endValues.view; in createAnimator() 56 float endRotation = (Float) endValues.values.get(PROPNAME_ROTATION); in createAnimator()
|
D | Recolor.java | 75 @Nullable TransitionValues endValues) { in createAnimator() argument 76 if (startValues == null || endValues == null) { in createAnimator() 79 final View view = endValues.view; in createAnimator() 81 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND); in createAnimator() 96 int end = (Integer) endValues.values.get(PROPNAME_TEXT_COLOR); in createAnimator()
|
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()
|
D | ChangeImageTransform.java | 144 @Nullable TransitionValues endValues) { in createAnimator() argument 145 if (startValues == null || endValues == null) { in createAnimator() 149 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 151 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createAnimator() 160 ImageView imageView = (ImageView) endValues.view; in createAnimator()
|
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()
|
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
|
D | ChangeBounds.java | 269 TransitionValues endValues = getMatchedTransitionValues(startParent, true); in parentMatches() local 270 if (endValues == null) { in parentMatches() 273 parentMatches = endParent == endValues.view; in parentMatches() 283 @Nullable TransitionValues endValues) { in createAnimator() argument 284 if (startValues == null || endValues == null) { in createAnimator() 288 Map<String, Object> endParentVals = endValues.values; in createAnimator() 294 final View view = endValues.view; in createAnimator() 297 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator() 311 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() 447 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0]; in createAnimator() [all …]
|
D | Transition.java | 478 @Nullable TransitionValues endValues) { in createAnimator() argument 563 TransitionValues endValues = unmatchedEnd.get(endView); in matchItemIds() local 564 if (startValues != null && endValues != null) { in matchItemIds() 566 mEndValuesList.add(endValues); in matchItemIds() 590 TransitionValues endValues = unmatchedEnd.get(endView); in matchIds() local 591 if (startValues != null && endValues != null) { in matchIds() 593 mEndValuesList.add(endValues); in matchIds() 617 TransitionValues endValues = unmatchedEnd.get(endView); in matchNames() local 618 if (startValues != null && endValues != null) { in matchNames() 620 mEndValuesList.add(endValues); in matchNames() [all …]
|
D | Crossfade.java | 172 @Nullable TransitionValues endValues) { in createAnimator() argument 173 if (startValues == null || endValues == null) { in createAnimator() 177 final View view = endValues.view; in createAnimator() 179 Map<String, Object> endVals = endValues.values; in createAnimator() 224 startValues + ", " + endValues); in createAnimator()
|
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
|
D | ChangeText.java | 160 @Nullable TransitionValues endValues) { in createAnimator() argument 161 if (startValues == null || endValues == null || in createAnimator() 162 !(startValues.view instanceof TextView) || !(endValues.view instanceof TextView)) { in createAnimator() 165 final TextView view = (TextView) endValues.view; in createAnimator() 167 Map<String, Object> endVals = endValues.values; in createAnimator()
|
D | TransitionPropagation.java | 46 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
D | SplitShadeTransitionAdapterTest.kt | 50 val endValues = createEndValues() in <lambda>() constant 52 val animator = adapter.createAnimator(startValues = null, endValues = endValues) in <lambda>() 59 val animator = adapter.createAnimator(startValues = createStartValues(), endValues = null) in <lambda>() 67 adapter.createAnimator(startValues = createStartValues(), endValues = createEndValues()) in <lambda>() 87 endValues: TransitionValues? in SplitShadeTransitionAdapter() 89 return createAnimator(/* sceneRoot= */ mock(), startValues, endValues) in SplitShadeTransitionAdapter()
|
/frameworks/base/core/java/com/android/internal/transition/ |
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() 156 endZ, endValues, mInterpolatorX, mInterpolatorY, mInterpolatorZ); in onAppear() 161 TransitionValues startValues, TransitionValues endValues) { in onDisappear() argument [all …]
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | ViewHierarchyAnimator.kt | 358 val endValues = in <lambda>() constant 379 endValues, in <lambda>() 463 val endValues = in <lambda>() constant 475 if (rootView.left != endValues.getValue(Bound.LEFT)) boundsToAnimate.add(Bound.LEFT) in <lambda>() 476 if (rootView.top != endValues.getValue(Bound.TOP)) boundsToAnimate.add(Bound.TOP) in <lambda>() 477 if (rootView.right != endValues.getValue(Bound.RIGHT)) boundsToAnimate.add(Bound.RIGHT) in <lambda>() 478 if (rootView.bottom != endValues.getValue(Bound.BOTTOM)) { in <lambda>() 486 endValues, in <lambda>() 496 shiftChildrenForRemoval(rootView, destination, endValues, interpolator, duration) in <lambda>() 551 endValues: Map<Bound, Int>, in <lambda>() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/layout/sections/transitions/ |
D | DefaultClockSteppingTransition.kt | 54 endValues: TransitionValues? in <lambda>() 56 if (startValues == null || endValues == null) { in <lambda>() 62 val toWindowX = endValues.values[PROP_X_IN_WINDOW] as Int in <lambda>()
|
D | ClockSizeTransition.kt | 101 endValues: TransitionValues? in <lambda>() 103 if (startValues == null || endValues == null) { in <lambda>() 106 "Couldn't create animator: startValues=$startValues; endValues=$endValues" in <lambda>() 117 val toView = endValues.view in <lambda>() 118 val toVis = endValues.values[PROP_VISIBILITY] as Int in <lambda>() 119 val toBounds = endValues.values[PROP_BOUNDS] as Rect in <lambda>() 120 val toSSBounds = endValues.values[SMARTSPACE_BOUNDS] as Rect? in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityViewTransition.kt | 71 endValues: TransitionValues? in <lambda>() 73 if (startValues == null || endValues == null) { in <lambda>() 98 val endRect = endValues.values[PROP_BOUNDS] as Rect in <lambda>()
|
D | PinShapeNonHintingView.java | 194 TransitionValues endValues) { in createAnimator() argument 195 if (sceneRoot == null || startValues == null || endValues == null) { in createAnimator() 200 Rect endRect = (Rect) endValues.values.get(PROP_BOUNDS); in createAnimator()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
D | RadiiAnimator.java | 79 void startAnimation(float[] endValues) { in startAnimation() argument 86 mEndValues = endValues; in startAnimation()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/layout/blueprints/transitions/ |
D | BaseBlueprintTransition.kt | 55 endValues: TransitionValues? in <lambda>() 69 endValues: TransitionValues? in <lambda>()
|