Searched refs:endClip (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/com/android/internal/transition/ |
D | EpicenterTranslateClipReveal.java | 144 final Rect endClip = getBestRect(endValues); in onAppear() local 145 final Rect startClip = getEpicenterOrCenter(endClip); in onAppear() 151 final State endStateX = new State(endClip.left, endClip.right, endX); in onAppear() 153 final State endStateY = new State(endClip.top, endClip.bottom, endY); in onAppear() 177 final Rect endClip = getEpicenterOrCenter(startClip); in onDisappear() local 183 final State endStateX = new State(endClip.left, endClip.right, endX); in onDisappear() 185 final State endStateY = new State(endClip.top, endClip.bottom, endY); in onDisappear()
|
/frameworks/support/transition/src/android/support/transition/ |
D | ChangeBounds.java | 287 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() local 293 if ((startClip != null && !startClip.equals(endClip)) in createAnimator() 294 || (startClip == null && endClip != null)) { in createAnimator() 354 final Rect finalClip = endClip; in createAnimator() 358 if (endClip == null) { in createAnimator() 359 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator() 362 if (!startClip.equals(endClip)) { in createAnimator() 365 startClip, endClip); in createAnimator()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 303 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() local 309 if ((startClip != null && !startClip.equals(endClip)) || in createAnimator() 310 (startClip == null && endClip != null)) { in createAnimator() 368 final Rect finalClip = endClip; in createAnimator() 372 if (endClip == null) { in createAnimator() 373 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator() 376 if (!startClip.equals(endClip)) { in createAnimator() 379 startClip, endClip); in createAnimator()
|