Searched refs:inOutInsets (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/utils/
H A DInsetUtils.java30 * Adds {@code insetsToAdd} to {@code inOutInsets}.
32 public static void addInsets(Rect inOutInsets, Rect insetsToAdd) { argument
33 inOutInsets.left += insetsToAdd.left;
34 inOutInsets.top += insetsToAdd.top;
35 inOutInsets.right += insetsToAdd.right;
36 inOutInsets.bottom += insetsToAdd.bottom;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java850 private void calculateWindowStableInsets(Rect inOutInsets, Rect windowRect, Rect displayRect) { argument
854 appRect.inset(inOutInsets);
859 inOutInsets.left = windowRectWithInsets.left - windowRect.left;
860 inOutInsets.top = windowRectWithInsets.top - windowRect.top;
861 inOutInsets.right = windowRect.right - windowRectWithInsets.right;
862 inOutInsets.bottom = windowRect.bottom - windowRectWithInsets.bottom;
/frameworks/base/services/core/java/com/android/server/policy/
H A DPhoneWindowManager.java4640 private void calculateRelevantTaskInsets(Rect taskBounds, Rect inOutInsets, int displayWidth, argument
4643 mTmpRect.inset(inOutInsets);
4649 inOutInsets.set(leftInset, topInset, rightInset, bottomInset);

Completed in 106 milliseconds