HomeSort by relevance Sort by last modified time
    Searched defs:mStableInsets (Results 1 - 9 of 9) 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...]
  /frameworks/base/core/java/com/android/internal/policy/
BackdropFrameRenderer.java 76 private final Rect mStableInsets = new Rect();
100 mStableInsets.set(stableInsets);
166 mStableInsets.set(stableInsets);
250 || !mStableInsets.equals(mOldStableInsets)
256 mOldStableInsets.set(mStableInsets);
257 redrawLocked(mNewTargetRect, mFullscreen, mSystemInsets, mStableInsets);
373 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/packages/SystemUI/src/com/android/systemui/pip/phone/
PipMotionHelper.java 92 private final Rect mStableInsets = new Rect();
115 SystemServicesProxy.getInstance(mContext).getStableInsets(mStableInsets);
206 mSnapAlgorithm.applyMinimizedOffset(toBounds, movementBounds, displaySize, mStableInsets);
558 pw.println(innerPrefix + "mStableInsets=" + mStableInsets);
  /frameworks/base/services/core/java/com/android/server/wm/
PinnedStackController.java 92 private final Rect mStableInsets = new Rect();
474 mService.getStableInsetsLocked(mDisplayContent.getDisplayId(), mStableInsets);
476 mStableInsets);
TaskSnapshotSurface.java 116 private final Rect mStableInsets = new Rect();
270 mStableInsets.set(stableInsets);
376 final int colorViewLeftInset = getColorViewLeftInset(mStableInsets.left,
463 private final Rect mStableInsets = new Rect();
488 mStableInsets.set(stableInsets);
496 return getColorViewTopInset(mStableInsets.top, mContentInsets.top);
517 final int rightInset = DecorView.getColorViewRightInset(mStableInsets.right,
527 getNavigationBarRect(c.getWidth(), c.getHeight(), mStableInsets, mContentInsets,
WindowState.java 293 final Rect mStableInsets = new Rect();
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 170 final Rect mStableInsets = new Rect();
752 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
778 mVisibleInsets, mStableInsets, mOutsets, mBackdropFrame,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/stackdivider/
DividerView.java 150 private final Rect mStableInsets = new Rect();
341 if (mStableInsets.left != insets.getStableInsetLeft()
342 || mStableInsets.top != insets.getStableInsetTop()
343 || mStableInsets.right != insets.getStableInsetRight()
344 || mStableInsets.bottom != insets.getStableInsetBottom()) {
345 mStableInsets.set(insets.getStableInsetLeft(), insets.getStableInsetTop(),
382 if (mStableInsets.isEmpty()) {
383 SystemServicesProxy.getInstance(mContext).getStableInsets(mStableInsets);
455 mDisplayHeight, mDividerSize, isHorizontalDivision(), mStableInsets);
460 mStableInsets, mDockedStackMinimized && mHomeStackResizable)
    [all...]

Completed in 324 milliseconds