Home
last modified time | relevance | path

Searched refs:endValues (Results 1 – 21 of 21) sorted by relevance

/frameworks/base/core/java/android/transition/
DVisibility.java193 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 …]
DChangeClipBounds.java80 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()
DChangeTransform.java227 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 …]
DChangeScroll.java68 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()
DRotate.java46 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()
DRecolor.java71 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()
DCircularPropagation.java58 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()
DChangeImageTransform.java140 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()
DTransition.java473 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 …]
DChangeBounds.java267 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 …]
DSidePropagation.java74 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()
DExplode.java81 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
DCrossfade.java168 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()
DChangeText.java156 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()
DSlide.java235 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
DFade.java143 TransitionValues endValues) { in onAppear() argument
158 TransitionValues endValues) { in onDisappear() argument
DTransitionPropagation.java46 TransitionValues startValues, TransitionValues endValues); in getStartDelay() argument
DTransitionSet.java428 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/
DEpicenterTranslateClipReveal.java124 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/
DKeyguardClockSwitch.java587 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/
DFadeTransitionTest.java144 TransitionValues endValues) { in testSnapshotView()
154 return super.onDisappear(sceneRoot, view, startValues, endValues); in testSnapshotView()