Searched refs:startClip (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/com/android/internal/transition/ |
D | EpicenterTranslateClipReveal.java | 145 final Rect startClip = getEpicenterOrCenter(endClip); in onAppear() local 148 view.setClipBounds(startClip); in onAppear() 150 final State startStateX = new State(startClip.left, startClip.right, startX); in onAppear() 152 final State startStateY = new State(startClip.top, startClip.bottom, startY); in onAppear() 176 final Rect startClip = getBestRect(startValues); in onDisappear() local 177 final Rect endClip = getEpicenterOrCenter(startClip); in onDisappear() 180 view.setClipBounds(startClip); in onDisappear() 182 final State startStateX = new State(startClip.left, startClip.right, startX); in onDisappear() 184 final State startStateY = new State(startClip.top, startClip.bottom, startY); in onDisappear()
|
/frameworks/support/transition/src/android/support/transition/ |
D | ChangeBounds.java | 286 Rect startClip = (Rect) startValues.values.get(PROPNAME_CLIP); in createAnimator() local 293 if ((startClip != null && !startClip.equals(endClip)) in createAnimator() 294 || (startClip == null && endClip != null)) { in createAnimator() 355 if (startClip == null) { in createAnimator() 356 startClip = new Rect(0, 0, startWidth, startHeight); in createAnimator() 362 if (!startClip.equals(endClip)) { in createAnimator() 363 ViewCompat.setClipBounds(view, startClip); in createAnimator() 365 startClip, endClip); in createAnimator()
|
/frameworks/base/core/java/android/transition/ |
D | ChangeBounds.java | 302 Rect startClip = (Rect) startValues.values.get(PROPNAME_CLIP); in createAnimator() local 309 if ((startClip != null && !startClip.equals(endClip)) || in createAnimator() 310 (startClip == null && endClip != null)) { in createAnimator() 369 if (startClip == null) { in createAnimator() 370 startClip = new Rect(0, 0, startWidth, startHeight); in createAnimator() 376 if (!startClip.equals(endClip)) { in createAnimator() 377 view.setClipBounds(startClip); in createAnimator() 379 startClip, endClip); in createAnimator()
|