Searched refs:outStartRect (Results 1 – 3 of 3) sorted by relevance
82 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()
93 public void fixBoundsForHomeAnimStartRect(RectF outStartRect, DeviceProfile deviceProfile) { in fixBoundsForHomeAnimStartRect() argument94 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()
337 fun fixBoundsForHomeAnimStartRect(outStartRect: RectF, deviceProfile: DeviceProfile) in setSecondary()