Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DTaskFragment.java2533 Rect inOutBounds, Rect intersectBounds, Rect intersectInsets) { in intersectWithInsetsIfFits() argument
2534 if (inOutBounds.right <= intersectBounds.right) { in intersectWithInsetsIfFits()
2536 Math.min(intersectBounds.right - intersectInsets.right, inOutBounds.right); in intersectWithInsetsIfFits()
2538 if (inOutBounds.bottom <= intersectBounds.bottom) { in intersectWithInsetsIfFits()
2540 Math.min(intersectBounds.bottom - intersectInsets.bottom, inOutBounds.bottom); in intersectWithInsetsIfFits()
2542 if (inOutBounds.left >= intersectBounds.left) { in intersectWithInsetsIfFits()
2544 Math.max(intersectBounds.left + intersectInsets.left, inOutBounds.left); in intersectWithInsetsIfFits()
2546 if (inOutBounds.top >= intersectBounds.top) { in intersectWithInsetsIfFits()
2548 Math.max(intersectBounds.top + intersectInsets.top, inOutBounds.top); in intersectWithInsetsIfFits()