Searched refs:localInsets (Results 1 – 2 of 2) sorted by relevance
1553 final Rect localInsets = mTempRect2; in updateStatusGuard() local1556 ViewUtils.computeFitSystemWindows(mSubDecor, insets, localInsets); in updateStatusGuard()1557 final int newMargin = localInsets.top == 0 ? insetTop : 0; in updateStatusGuard()
7151 Rect localInsets = sThreadLocal.get(); in fitSystemWindowsInt() local7152 if (localInsets == null) { in fitSystemWindowsInt()7153 localInsets = new Rect(); in fitSystemWindowsInt()7154 sThreadLocal.set(localInsets); in fitSystemWindowsInt()7156 boolean res = computeFitSystemWindows(insets, localInsets); in fitSystemWindowsInt()7157 mUserPaddingLeftInitial = localInsets.left; in fitSystemWindowsInt()7158 mUserPaddingRightInitial = localInsets.right; in fitSystemWindowsInt()7159 internalSetPadding(localInsets.left, localInsets.top, in fitSystemWindowsInt()7160 localInsets.right, localInsets.bottom); in fitSystemWindowsInt()