Searched defs:mSystemInsets (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
H A DTaskGridLayoutAlgorithm.java58 private Rect mSystemInsets = new Rect(); field in class: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/lowram/
H A DTaskStackLowRamLayoutAlgorithm.java52 private Rect mSystemInsets = new Rect(); field in class:TaskStackLowRamLayoutAlgorithm
67 int windowHeight = mWindowRect.height() - mSystemInsets.bottom;
68 int windowWidth = mWindowRect.width() - mSystemInsets.right - mSystemInsets.left;
81 mSystemInsets = systemInsets;
102 int windowHeight = mWindowRect.height() - mSystemInsets.bottom;
116 int windowHeight = mWindowRect.height() - mSystemInsets.bottom;
136 int windowHeight = mWindowRect.height() - mSystemInsets.bottom;
257 transformOut.rect.offset(mPaddingLeftRight + mSystemInsets.left, y);
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java75 private final Rect mSystemInsets = new Rect(); field in class:BackdropFrameRenderer
99 mSystemInsets.set(systemInsets);
165 mSystemInsets.set(systemInsets);
251 || !mSystemInsets.equals(mOldSystemInsets)
255 mOldSystemInsets.set(mSystemInsets);
257 redrawLocked(mNewTargetRect, mFullscreen, mSystemInsets, mStableInsets);
373 final int topInset = DecorView.getColorViewTopInset(mStableInsets.top, mSystemInsets.top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java133 Rect mSystemInsets = new Rect(); field in class: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);
[all...]
H A DTaskStackLayoutAlgorithm.java177 public Rect mSystemInsets = new Rect(); field in class:TaskStackLayoutAlgorithm
349 boolean changed = !mSystemInsets.equals(systemInsets);
350 mSystemInsets.set(systemInsets);
390 mStackBottomOffset = mSystemInsets.bottom + bottomMargin;
542 float minBottomTaskNormX = getNormalizedXFromUnfocusedY(mSystemInsets.bottom +
904 (mStackRect.height() - mSystemInsets.bottom - mTaskRect.height()) / 2;
1250 writer.print("insets="); writer.print(Utilities.dumpRect(mSystemInsets));

Completed in 175 milliseconds