Home
last modified time | relevance | path

Searched refs:mSystemInsets (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/
DTaskStackLowRamLayoutAlgorithm.java52 private Rect mSystemInsets = new Rect(); field in TaskStackLowRamLayoutAlgorithm
67 int windowHeight = mWindowRect.height() - mSystemInsets.bottom; in initialize()
68 int windowWidth = mWindowRect.width() - mSystemInsets.right - mSystemInsets.left; in initialize()
81 mSystemInsets = systemInsets; in setSystemInsets()
102 int windowHeight = mWindowRect.height() - mSystemInsets.bottom; in getFrontOfStackTransform()
116 int windowHeight = mWindowRect.height() - mSystemInsets.bottom; in getBackOfStackTransform()
136 int windowHeight = mWindowRect.height() - mSystemInsets.bottom; in getTransform()
257 transformOut.rect.offset(mPaddingLeftRight + mSystemInsets.left, y); in fillStackTransform()
/frameworks/base/core/java/com/android/internal/policy/
DBackdropFrameRenderer.java75 private final Rect mSystemInsets = new Rect(); field in BackdropFrameRenderer
99 mSystemInsets.set(systemInsets); in BackdropFrameRenderer()
165 mSystemInsets.set(systemInsets); in setTargetRect()
251 || !mSystemInsets.equals(mOldSystemInsets) in doFrameUncheckedLocked()
255 mOldSystemInsets.set(mSystemInsets); in doFrameUncheckedLocked()
257 redrawLocked(mNewTargetRect, mFullscreen, mSystemInsets, mStableInsets); in doFrameUncheckedLocked()
373 final int topInset = DecorView.getColorViewTopInset(mStableInsets.top, mSystemInsets.top); in drawColorViews()
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
DTaskGridLayoutAlgorithm.java58 private Rect mSystemInsets = new Rect(); field in TaskGridLayoutAlgorithm
288 mSystemInsets = systemInsets;
293 int usableWidth = mScreenSize.x - mSystemInsets.left - mSystemInsets.right;
294 int usableHeight = mScreenSize.y - mSystemInsets.top - mSystemInsets.bottom;
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
DRecentsView.java133 Rect mSystemInsets = new Rect(); field in RecentsView
241 mTaskStackView.setSystemInsets(mSystemInsets);
456 int leftRightInsets = mSystemInsets.left + mSystemInsets.right;
457 int topBottomInsets = mSystemInsets.top + mSystemInsets.bottom;
460 int childLeft = left + mSystemInsets.left +
462 int childTop = top + mSystemInsets.top +
500 mSystemInsets.set(insets.getSystemWindowInsets());
501 mTaskStackView.setSystemInsets(mSystemInsets);
849 mSystemInsets)
851 mDividerSize, mSystemInsets, getResources());
[all …]
DTaskStackLayoutAlgorithm.java177 public Rect mSystemInsets = new Rect(); field in TaskStackLayoutAlgorithm
349 boolean changed = !mSystemInsets.equals(systemInsets); in setSystemInsets()
350 mSystemInsets.set(systemInsets); in setSystemInsets()
390 mStackBottomOffset = mSystemInsets.bottom + bottomMargin; in initialize()
542 float minBottomTaskNormX = getNormalizedXFromUnfocusedY(mSystemInsets.bottom + in setTaskOverridesForInitialState()
904 (mStackRect.height() - mSystemInsets.bottom - mTaskRect.height()) / 2; in getStackTransform()
1250 writer.print("insets="); writer.print(Utilities.dumpRect(mSystemInsets)); in dump()
DRecentsViewTouchHandler.java239 mRv.mSystemInsets, true /* isCurrentTarget */)) { in handleTouchEvent()
248 mRv.mSystemInsets, false /* isCurrentTarget */)) { in handleTouchEvent()
DTaskStackView.java841 mLayoutAlgorithm.setSystemInsets(mStableLayoutAlgorithm.mSystemInsets); in updateLayoutToStableBounds()
1194 mLayoutAlgorithm.mSystemInsets.top, mLayoutAlgorithm.mSystemInsets.left, in onMeasure()
1195 mLayoutAlgorithm.mSystemInsets.right, mTmpRect); in onMeasure()
1913 Rect systemInsets = new Rect(mStableLayoutAlgorithm.mSystemInsets); in onBusEvent()