HomeSort by relevance Sort by last modified time
    Searched defs:mStableInsets (Results 1 - 8 of 8) sorted by null

  /frameworks/base/core/java/android/view/
WindowInsets.java 36 private Rect mStableInsets;
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.left != 0 || mStableInsets.right !=
    [all...]
SurfaceView.java 115 final Rect mStableInsets = new Rect();
520 mStableInsets);
543 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
    [all...]
View.java     [all...]
  /frameworks/base/core/java/com/android/internal/policy/
BackdropFrameRenderer.java 76 private final Rect mStableInsets = new Rect();
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/tests/WallpaperTest/src/com/example/wallpapertest/
TestWallpaper.java 64 private final Rect mStableInsets = new Rect();
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.to
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 163 final Rect mStableInsets = new Rect();
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);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerView.java 148 private final Rect mStableInsets = new Rect();
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);
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowState.java 239 final Rect mStableInsets = new Rect();
    [all...]

Completed in 400 milliseconds