Home
last modified time | relevance | path

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

12

/frameworks/base/core/java/android/transition/
DVisibility.java187 TransitionValues endValues) { in getVisibilityChangeInfo() argument
198 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo()
199 visInfo.endVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY); in getVisibilityChangeInfo()
200 visInfo.endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in getVisibilityChangeInfo()
205 if (startValues != null && endValues != null) { in getVisibilityChangeInfo()
232 } else if (endValues == null && visInfo.startVisibility == View.VISIBLE) { in getVisibilityChangeInfo()
241 TransitionValues endValues) { in createAnimator() argument
242 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues); in createAnimator()
247 endValues, visInfo.endVisibility); in createAnimator()
250 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()
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()
DTransition.java472 TransitionValues endValues) { in createAnimator() argument
557 TransitionValues endValues = unmatchedEnd.get(endView); in matchItemIds() local
558 if (startValues != null && endValues != null) { in matchItemIds()
560 mEndValuesList.add(endValues); in matchItemIds()
584 TransitionValues endValues = unmatchedEnd.get(endView); in matchIds() local
585 if (startValues != null && endValues != null) { in matchIds()
587 mEndValuesList.add(endValues); in matchIds()
611 TransitionValues endValues = unmatchedEnd.get(endView); in matchNames() local
612 if (startValues != null && endValues != null) { in matchNames()
614 mEndValuesList.add(endValues); in matchNames()
[all …]
DChangeBounds.java263 TransitionValues endValues = getMatchedTransitionValues(startParent, true); in parentMatches() local
264 if (endValues == null) { in parentMatches()
267 parentMatches = endParent == endValues.view; in parentMatches()
275 TransitionValues endValues) { in createAnimator() argument
276 if (startValues == null || endValues == null) { in createAnimator()
280 Map<String, Object> endParentVals = endValues.values; in createAnimator()
286 final View view = endValues.view; in createAnimator()
289 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator()
303 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator()
439 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X) - tempLocation[0]; in createAnimator()
[all …]
/frameworks/support/transition/src/android/support/transition/
DVisibility.java186 TransitionValues endValues) { in getVisibilityChangeInfo() argument
197 if (endValues != null && endValues.values.containsKey(PROPNAME_VISIBILITY)) { in getVisibilityChangeInfo()
198 visInfo.mEndVisibility = (Integer) endValues.values.get(PROPNAME_VISIBILITY); in getVisibilityChangeInfo()
199 visInfo.mEndParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in getVisibilityChangeInfo()
204 if (startValues != null && endValues != null) { in getVisibilityChangeInfo()
231 } else if (endValues == null && visInfo.mStartVisibility == View.VISIBLE) { in getVisibilityChangeInfo()
241 @Nullable TransitionValues startValues, @Nullable TransitionValues endValues) { in createAnimator() argument
242 VisibilityInfo visInfo = getVisibilityChangeInfo(startValues, endValues); in createAnimator()
247 endValues, visInfo.mEndVisibility); in createAnimator()
250 endValues, visInfo.mEndVisibility in createAnimator()
[all …]
DChangeClipBounds.java83 TransitionValues endValues) { in createAnimator() argument
84 if (startValues == null || endValues == null in createAnimator()
86 || !endValues.values.containsKey(PROPNAME_CLIP)) { in createAnimator()
90 Rect end = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator()
99 end = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator()
105 ViewCompat.setClipBounds(endValues.view, start); in createAnimator()
107 ObjectAnimator animator = ObjectAnimator.ofObject(endValues.view, ViewUtils.CLIP_BOUNDS, in createAnimator()
110 final View endView = endValues.view; in createAnimator()
DChangeTransform.java238 TransitionValues endValues) { in createAnimator() argument
239 if (startValues == null || endValues == null in createAnimator()
241 || !endValues.values.containsKey(PROPNAME_PARENT)) { in createAnimator()
246 ViewGroup endParent = (ViewGroup) endValues.values.get(PROPNAME_PARENT); in createAnimator()
262 setMatricesForParent(startValues, endValues); in createAnimator()
266 ObjectAnimator transformAnimator = createTransformAnimator(startValues, endValues, in createAnimator()
270 createGhostView(sceneRoot, startValues, endValues); in createAnimator()
280 TransitionValues endValues, final boolean handleParentChange) { in createTransformAnimator() argument
282 Matrix endMatrix = (Matrix) endValues.values.get(PROPNAME_MATRIX); in createTransformAnimator()
296 final Transforms transforms = (Transforms) endValues.values.get(PROPNAME_TRANSFORMS); in createTransformAnimator()
[all …]
DChangeScroll.java73 @Nullable TransitionValues startValues, @Nullable TransitionValues endValues) { in createAnimator() argument
74 if (startValues == null || endValues == null) { in createAnimator()
77 final View view = endValues.view; in createAnimator()
79 int endX = (Integer) endValues.values.get(PROPNAME_SCROLL_X); in createAnimator()
81 int endY = (Integer) endValues.values.get(PROPNAME_SCROLL_Y); 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()
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()
DChangeBounds.java246 TransitionValues endValues = getMatchedTransitionValues(startParent, true); in parentMatches() local
247 if (endValues == null) { in parentMatches()
250 parentMatches = endParent == endValues.view; in parentMatches()
259 @Nullable TransitionValues startValues, @Nullable TransitionValues endValues) { in createAnimator() argument
260 if (startValues == null || endValues == null) { in createAnimator()
264 Map<String, Object> endParentVals = endValues.values; in createAnimator()
270 final View view = endValues.view; in createAnimator()
273 Rect endBounds = (Rect) endValues.values.get(PROPNAME_BOUNDS); in createAnimator()
287 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator()
424 int endX = (Integer) endValues.values.get(PROPNAME_WINDOW_X); in createAnimator()
[all …]
/frameworks/support/transition/tests/src/android/support/transition/
DVisibilityTest.java76 final TransitionValues endValues = new TransitionValues(); in testCustomVisibility() local
77 endValues.view = mView; in testCustomVisibility()
78 visibility.captureEndValues(endValues); in testCustomVisibility()
82 .createAnimator(mRoot, startValues, endValues); in testCustomVisibility()
101 final TransitionValues endValues = new TransitionValues(); in testCustomVisibility2() local
102 endValues.view = mView; in testCustomVisibility2()
103 visibility.captureEndValues(endValues); in testCustomVisibility2()
105 .createAnimator(mRoot, startValues, endValues); in testCustomVisibility2()
147 int startVisibility, TransitionValues endValues, int endVisibility) { in onAppear() argument
157 int startVisibility, TransitionValues endValues, int endVisibility) { in onDisappear() argument
[all …]
DFadeTest.java79 final TransitionValues endValues = new TransitionValues(); in testDisappear() local
80 endValues.view = mView; in testDisappear()
81 fade.captureEndValues(endValues); in testDisappear()
82 Animator animator = fade.createAnimator(mRoot, startValues, endValues); in testDisappear()
95 final TransitionValues endValues = new TransitionValues(); in testAppear() local
96 endValues.view = mView; in testAppear()
97 fade.captureEndValues(endValues); in testAppear()
98 Animator animator = fade.createAnimator(mRoot, startValues, endValues); in testAppear()
109 final TransitionValues endValues = new TransitionValues(); in testNoChange() local
110 endValues.view = mView; in testNoChange()
[all …]
/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/support/design/src/android/support/design/internal/
DTextScale.java57 TransitionValues endValues) { in createAnimator() argument
58 if (startValues == null || endValues == null || !(startValues.view instanceof TextView) in createAnimator()
59 || !(endValues.view instanceof TextView)) { in createAnimator()
62 final TextView view = (TextView) endValues.view; in createAnimator()
64 Map<String, Object> endVals = endValues.values; in createAnimator()
/frameworks/support/samples/SupportTransitionDemos/src/com/example/android/support/transition/widget/
DChangeColor.java67 @Nullable TransitionValues endValues) { in createAnimator() argument
69 if (null == startValues || null == endValues) { in createAnimator()
74 final View view = endValues.view; in createAnimator()
78 Drawable endBackground = (Drawable) endValues.values.get(PROPNAME_BACKGROUND); in createAnimator()
/frameworks/support/fragment/tests/java/android/support/v4/app/
DTrackingVisibility.java37 TransitionValues endValues) { in onAppear() argument
38 targets.add(endValues.view); in onAppear()
50 TransitionValues endValues) { in onDisappear() argument
DTrackingTransition.java61 TransitionValues endValues) { in createAnimator() argument
65 if (endValues != null) { in createAnimator()
66 targets.add(endValues.view); in createAnimator()
/frameworks/support/v17/leanback/kitkat/android/support/v17/leanback/transition/
DScale.java50 TransitionValues endValues) { in createAnimator() argument
51 if (startValues == null || endValues == null) { in createAnimator()
56 final float endScale = (Float) endValues.values.get(PROPNAME_SCALE); in createAnimator()

12