Home
last modified time | relevance | path

Searched refs:outStartRect (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Launcher3/quickstep/src/com/android/quickstep/orientation/
DLandscapePagedViewHandler.kt82 override fun fixBoundsForHomeAnimStartRect(outStartRect: RectF, deviceProfile: DeviceProfile) { in fixBoundsForHomeAnimStartRect()
85 if (outStartRect.left > deviceProfile.heightPx) { in fixBoundsForHomeAnimStartRect()
86 outStartRect.offsetTo(0f, outStartRect.top) in fixBoundsForHomeAnimStartRect()
87 } else if (outStartRect.left < -deviceProfile.heightPx) { in fixBoundsForHomeAnimStartRect()
88 outStartRect.offsetTo(0f, outStartRect.top) in fixBoundsForHomeAnimStartRect()
DPortraitPagedViewHandler.java93 public void fixBoundsForHomeAnimStartRect(RectF outStartRect, DeviceProfile deviceProfile) { in fixBoundsForHomeAnimStartRect() argument
94 if (outStartRect.left > deviceProfile.widthPx) { in fixBoundsForHomeAnimStartRect()
95 outStartRect.offsetTo(0, outStartRect.top); in fixBoundsForHomeAnimStartRect()
96 } else if (outStartRect.left < -deviceProfile.widthPx) { in fixBoundsForHomeAnimStartRect()
97 outStartRect.offsetTo(0, outStartRect.top); in fixBoundsForHomeAnimStartRect()
DRecentsPagedOrientationHandler.kt337 fun fixBoundsForHomeAnimStartRect(outStartRect: RectF, deviceProfile: DeviceProfile) in setSecondary()