Searched refs:mStableInsets (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | WindowInsets.java | 36 private Rect mStableInsets; field in WindowInsets 68 mStableInsets = mStableInsetsConsumed ? EMPTY_RECT : stableInsets; in WindowInsets() 81 mStableInsets = src.mStableInsets; in WindowInsets() 402 return mStableInsets.top; in getStableInsetTop() 417 return mStableInsets.left; in getStableInsetLeft() 432 return mStableInsets.right; in getStableInsetRight() 447 return mStableInsets.bottom; in getStableInsetBottom() 462 return mStableInsets.top != 0 || mStableInsets.left != 0 || mStableInsets.right != 0 in hasStableInsets() 463 || mStableInsets.bottom != 0; in hasStableInsets() 473 result.mStableInsets = EMPTY_RECT; in consumeStableInsets() [all …]
|
D | SurfaceView.java | 108 final Rect mStableInsets = new Rect(); field in SurfaceView 500 mStableInsets); in updateWindow() 522 mVisibleInsets, mStableInsets, mConfiguration, mNewSurface); in updateWindow()
|
D | ViewRootImpl.java | 529 mAttachInfo.mContentInsets, mAttachInfo.mStableInsets, mInputChannel); in setView() 550 mPendingStableInsets.set(mAttachInfo.mStableInsets); in setView() 1210 mDispatchStableInsets.set(mAttachInfo.mStableInsets); in dispatchApplyInsets() 1351 if (!mPendingStableInsets.equals(mAttachInfo.mStableInsets)) { in performTraversals() 1534 mAttachInfo.mStableInsets); in performTraversals() 1610 mAttachInfo.mStableInsets.set(mPendingStableInsets); in performTraversals() 1612 + mAttachInfo.mStableInsets); in performTraversals()
|
D | View.java | 20312 final Rect mStableInsets = new Rect();
|
/frameworks/base/tests/WallpaperTest/src/com/example/wallpapertest/ |
D | TestWallpaper.java | 64 private final Rect mStableInsets = new Rect(); field in TestWallpaper.ClockEngine 161 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(), in onApplyWindowInsets() 212 c.drawRect(0 + mStableInsets.left, 0 + mStableInsets.top, in drawFrame() 213 width - mStableInsets.right, height - mStableInsets.bottom, in drawFrame() 220 int x = mStableInsets.left + mPadding; in drawFrame() 221 int y = height - mStableInsets.bottom - mPadding - ascdesc; in drawFrame() 237 c.drawText("Stable Insets: (" + mStableInsets.left + ", " + mStableInsets.top in drawFrame() 238 + ") - (" + mStableInsets.right + ", " + mStableInsets.bottom + ")", in drawFrame()
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 168 final Rect mStableInsets = new Rect(); field in WallpaperService.Engine 667 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, in updateSurface() 689 mVisibleInsets, mStableInsets, mConfiguration, mSurfaceHolder.mSurface); in updateSurface() 709 mStableInsets.left += padding.left; in updateSurface() 710 mStableInsets.top += padding.top; in updateSurface() 711 mStableInsets.right += padding.right; in updateSurface() 712 mStableInsets.bottom += padding.bottom; in updateSurface() 726 insetsChanged |= !mDispatchedStableInsets.equals(mStableInsets); in updateSurface() 787 mDispatchedStableInsets.set(mStableInsets); in updateSurface()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowState.java | 174 final Rect mStableInsets = new Rect(); field in WindowState 633 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0), in computeFrameLw() 646 mStableInsets.scale(mInvGlobalScale); in computeFrameLw() 669 + " vi=" + mStableInsets.toShortString()); in computeFrameLw() 774 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets); in setInsetsChanged() 1583 pw.print(" stable="); mStableInsets.printShortString(pw); in dump()
|
D | WindowManagerService.java | 3279 outStableInsets.set(win.mStableInsets); in relayoutWindow() 9427 + " " + w.mStableInsets.toShortString() in updateResizingWindows() 9435 w.mLastStableInsets.set(w.mStableInsets); in updateResizingWindows()
|