Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/utils/
DInsetUtils.java32 public static void addInsets(Rect inOutInsets, Rect insetsToAdd) { in addInsets() argument
33 inOutInsets.left += insetsToAdd.left; in addInsets()
34 inOutInsets.top += insetsToAdd.top; in addInsets()
35 inOutInsets.right += insetsToAdd.right; in addInsets()
36 inOutInsets.bottom += insetsToAdd.bottom; in addInsets()