Home
last modified time | relevance | path

Searched refs:appFrame (Results 1 – 2 of 2) sorted by relevance

/aosp14/frameworks/base/core/java/com/android/internal/policy/
H A DTransitionAnimation.java474 boolean enter, Rect appFrame, Rect displayFrame, Rect startRect) { in createClipRevealAnimationLockedCompat() argument
477 final int appWidth = appFrame.width(); in createClipRevealAnimationLockedCompat()
478 final int appHeight = appFrame.height(); in createClipRevealAnimationLockedCompat()
495 int clipStartX = centerX - halfWidth - appFrame.left; in createClipRevealAnimationLockedCompat()
496 int clipStartY = centerY - halfHeight - appFrame.top; in createClipRevealAnimationLockedCompat()
502 if (appFrame.top > centerY - halfHeight) { in createClipRevealAnimationLockedCompat()
503 translationY = (centerY - halfHeight) - appFrame.top; in createClipRevealAnimationLockedCompat()
508 if (appFrame.left > centerX - halfWidth) { in createClipRevealAnimationLockedCompat()
509 translationX = (centerX - halfWidth) - appFrame.left; in createClipRevealAnimationLockedCompat()
513 if (appFrame.right < centerX + halfWidth) { in createClipRevealAnimationLockedCompat()
[all …]
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DDisplayContent.java2248 final Rect appFrame = mDisplayPolicy.getDecorInsetsInfo(rotation, dw, dh).mNonDecorFrame; in updateDisplayAndOrientation() local
2255 mDisplayInfo.appWidth = appFrame.width(); in updateDisplayAndOrientation()
2256 mDisplayInfo.appHeight = appFrame.height(); in updateDisplayAndOrientation()