Searched defs:mStableInsets (Results 1 - 8 of 8) 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
524 mStableInsets);
547 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
H A DView.java22742 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
161 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(),
212 c.drawRect(0 + mStableInsets.left, 0 + mStableInsets.top,
213 width - mStableInsets.right, height - mStableInsets.bottom,
220 int x = mStableInsets.left + mPadding;
221 int y = height - mStableInsets.bottom - mPadding - ascdesc;
237 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);
162 mStableInsets.set(stableInsets);
246 || !mStableInsets.equals(mOldStableInsets)
252 mOldStableInsets.set(mStableInsets);
253 redrawLocked(mNewTargetRect, mFullscreen, mSystemInsets, mStableInsets);
369 final int topInset = DecorView.getColorViewTopInset(mStableInsets.top, mSystemInsets.top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
H A DDividerView.java142 private final Rect mStableInsets = new Rect(); field in class:DividerView
303 if (mStableInsets.left != insets.getStableInsetLeft()
304 || mStableInsets.top != insets.getStableInsetTop()
305 || mStableInsets.right != insets.getStableInsetRight()
306 || mStableInsets.bottom != insets.getStableInsetBottom()) {
307 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(),
403 mDisplayHeight, mDividerSize, isHorizontalDivision(), mStableInsets);
898 return mStableInsets.top != 0;
900 return mStableInsets.bottom != 0;
904 return mStableInsets
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java162 final Rect mStableInsets = new Rect(); field in class:WallpaperService.Engine
654 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
680 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
701 mStableInsets.left += padding.left;
702 mStableInsets.top += padding.top;
703 mStableInsets.right += padding.right;
704 mStableInsets.bottom += padding.bottom;
722 insetsChanged |= !mDispatchedStableInsets.equals(mStableInsets);
788 mDispatchedStableInsets.set(mStableInsets);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java237 final Rect mStableInsets = new Rect(); field in class:WindowState
862 mStableInsets.set(Math.max(mStableFrame.left - mDisplayFrame.left, 0),
891 mStableInsets.set(Math.max(mStableFrame.left - mFrame.left, 0),
914 mStableInsets.scale(mInvGlobalScale);
938 + " si=" + mStableInsets.toShortString()
1053 mStableInsetsChanged |= !mLastStableInsets.equals(mStableInsets);
2648 pw.print(" stable="); mStableInsets.printShortString(pw);

Completed in 612 milliseconds