Searched refs:mStableInsets (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowInsets.java36 private Rect mStableInsets; field in class:WindowInsets
75 mStableInsets = mStableInsetsConsumed ? EMPTY_RECT : stableInsets;
89 mStableInsets = src.mStableInsets;
411 return mStableInsets.top;
426 return mStableInsets.left;
441 return mStableInsets.right;
456 return mStableInsets.bottom;
471 return mStableInsets.top != 0 || mStableInsets
[all...]
H A DSurfaceView.java115 final Rect mStableInsets = new Rect(); field in class:SurfaceView
520 mStableInsets);
543 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
H A DViewRootImpl.java642 mAttachInfo.mContentInsets, mAttachInfo.mStableInsets,
664 mPendingStableInsets.set(mAttachInfo.mStableInsets);
1404 mDispatchStableInsets.set(mAttachInfo.mStableInsets);
1586 if (!mPendingStableInsets.equals(mAttachInfo.mStableInsets)) {
1783 mAttachInfo.mStableInsets);
1802 mAttachInfo.mStableInsets.set(mPendingStableInsets);
1804 + mAttachInfo.mStableInsets);
H A DView.java22912 final Rect mStableInsets = new Rect(); field in class:View.AttachInfo
/frameworks/base/tests/WallpaperTest/src/com/example/wallpapertest/
H A DTestWallpaper.java64 private final Rect mStableInsets = new Rect(); field in class:TestWallpaper.ClockEngine
169 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(),
220 c.drawRect(0 + mStableInsets.left, 0 + mStableInsets.top,
221 width - mStableInsets.right, height - mStableInsets.bottom,
228 int x = mStableInsets.left + mPadding;
229 int y = height - mStableInsets.bottom - mPadding - ascdesc;
245 c.drawText("Stable Insets: (" + mStableInsets.left + ", " + mStableInsets
[all...]
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java76 private final Rect mStableInsets = new Rect(); field in class:BackdropFrameRenderer
99 mStableInsets.set(stableInsets);
165 mStableInsets.set(stableInsets);
249 || !mStableInsets.equals(mOldStableInsets)
255 mOldStableInsets.set(mStableInsets);
256 redrawLocked(mNewTargetRect, mFullscreen, mSystemInsets, mStableInsets);
372 final int topInset = DecorView.getColorViewTopInset(mStableInsets.top, mSystemInsets.top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java148 private final Rect mStableInsets = new Rect(); field in class:DividerView
347 if (mStableInsets.left != insets.getStableInsetLeft()
348 || mStableInsets.top != insets.getStableInsetTop()
349 || mStableInsets.right != insets.getStableInsetRight()
350 || mStableInsets.bottom != insets.getStableInsetBottom()) {
351 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(),
447 mDisplayHeight, mDividerSize, isHorizontalDivision(), mStableInsets);
963 return mStableInsets.top != 0;
965 return mStableInsets.bottom != 0;
969 return mStableInsets
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java163 final Rect mStableInsets = new Rect(); field in class:WallpaperService.Engine
655 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
681 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
702 mStableInsets.left += padding.left;
703 mStableInsets.top += padding.top;
704 mStableInsets.right += padding.right;
705 mStableInsets.bottom += padding.bottom;
723 insetsChanged |= !mDispatchedStableInsets.equals(mStableInsets);
789 mDispatchedStableInsets.set(mStableInsets);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java239 final Rect mStableInsets = new Rect(); field in class:WindowState
881 mStableInsets.set(Math.max(mStableFrame.left - mDisplayFrame.left, 0),
910 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
933 mStableInsets.scale(mInvGlobalScale);
957 + " si=" + mStableInsets.toShortString()
1072 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets);
2697 pw.print(" stable="); mStableInsets.printShortString(pw);
H A DWindowManagerService.java3063 outStableInsets.set(win.mStableInsets);
9646 + " " + w.mStableInsets.toShortString()
9666 w.mLastStableInsets.set(w.mStableInsets);

Completed in 667 milliseconds