/frameworks/base/core/java/android/transition/ |
D | Visibility.java | 193 TransitionValues endValues) { in getVisibilityChangeInfo() argument 204 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo() 205 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY); in getVisibilityChangeInfo() 206 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in getVisibilityChangeInfo() 211 if (startValues != null && endValues != null) { in getVisibilityChangeInfo() 238 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) { in getVisibilityChangeInfo() 247 TransitionValues endValues) { in createAnimator() argument 248 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues); in createAnimator() 253 endValues, visInfo.endVisibility); in createAnimator() 256 endValues, visInfo.endVisibility in createAnimator() [all …]
|
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()
|
D | ChangeTransform.java | 227 TransitionValues endValues) { in createAnimator() argument 228 if (startValues == null || endValues == null || in createAnimator() 230 !endValues.values.containsKey(PROPNAME_PARENT)) { in createAnimator() 235 ViewGroup endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in createAnimator() 251 setMatricesForParent(startValues, endValues); in createAnimator() 255 ObjectAnimator transformAnimator = createTransformAnimator(startValues, endValues, in createAnimator() 259 createGhostView(sceneRoot, startValues, endValues); in createAnimator() 266 TransitionValues endValues, final boolean handleParentChange) { in createTransformAnimator() argument 268 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createTransformAnimator() 282 final Transforms transforms = (Transforms) endValues.values.get(PROPNAME_TRANSFORMS); in createTransformAnimator() [all …]
|
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()
|
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()
|
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()
|
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 | 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()
|
D | Transition.java | 473 TransitionValues endValues) { in createAnimator() argument 558 TransitionValues endValues = unmatchedEnd.get(endView); in matchItemIds() local 559 if (startValues != null && endValues != null) { in matchItemIds() 561 mEndValuesList.add(endValues); in matchItemIds() 585 TransitionValues endValues = unmatchedEnd.get(endView); in matchIds() local 586 if (startValues != null && endValues != null) { in matchIds() 588 mEndValuesList.add(endValues); in matchIds() 612 TransitionValues endValues = unmatchedEnd.get(endView); in matchNames() local 613 if (startValues != null && endValues != null) { in matchNames() 615 mEndValuesList.add(endValues); in matchNames() [all …]
|
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 …]
|
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 | 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()
|
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()
|
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 | Fade.java | 143 TransitionValues endValues) { in onAppear() argument 158 TransitionValues endValues) { in onDisappear() argument
|
D | TransitionPropagation.java | 46 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
|
D | TransitionSet.java | 428 TransitionValuesMaps endValues, ArrayList<TransitionValues> startValuesList, in createAnimators() argument 444 childTransition.createAnimators(sceneRoot, startValues, endValues, startValuesList, in createAnimators()
|
/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/src/com/android/keyguard/ |
D | KeyguardClockSwitch.java | 587 TransitionValues endValues) { in onAppear() argument 593 final int endVisibility = (int) endValues.values.get(PROPNAME_VISIBILITY); in onAppear() 602 TransitionValues endValues) { in onDisappear() argument 608 final int endVisibility = (int) endValues.values.get(PROPNAME_VISIBILITY); in onDisappear()
|
/frameworks/base/core/tests/coretests/src/android/transition/ |
D | FadeTransitionTest.java | 144 TransitionValues endValues) { in testSnapshotView() 154 return super.onDisappear(sceneRoot, view, startValues, endValues); in testSnapshotView()
|