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/base/core/java/android/transition/ |
D | ChangeBounds.java | 307 Rect endClip = (Rect) endValues.values.get(PROPNAME_CLIP); in createAnimator() local 313 if ((startClip != null && !startClip.equals(endClip)) || in createAnimator() 314 (startClip == null && endClip != null)) { in createAnimator() 404 final Rect finalClip = endClip; in createAnimator() 408 if (endClip == null) { in createAnimator() 409 endClip = new Rect(0, 0, endWidth, endHeight); in createAnimator() 412 if (!startClip.equals(endClip)) { in createAnimator() 415 startClip, endClip); in createAnimator()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowChangeAnimationSpec.java | 131 Rect endClip = new Rect(mEndBounds); in createBoundsInterpolator() local 133 endClip.offsetTo(0, 0); in createBoundsInterpolator() 134 final Animation clipAnim = new ClipRectAnimation(startClip, endClip); in createBoundsInterpolator()
|