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.java59 private Rect mSystemInsets = new Rect(); field in class:TaskGridLayoutAlgorithm
289 mSystemInsets = systemInsets;
294 int usableWidth = mScreenSize.x - mSystemInsets.left - mSystemInsets.right;
295 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.java120 Rect mSystemInsets = new Rect(); field in class:RecentsView
229 mTaskStackView.setSystemInsets(mSystemInsets);
478 int leftRightInsets = mSystemInsets.left + mSystemInsets.right;
479 int topBottomInsets = mSystemInsets.top + mSystemInsets.bottom;
482 int childLeft = left + mSystemInsets.left +
484 int childTop = top + mSystemInsets.top +
524 mSystemInsets.set(insets.getSystemWindowInsets());
525 mTaskStackView.setSystemInsets(mSystemInsets);
[all...]
H A DTaskStackLayoutAlgorithm.java251 public Rect mSystemInsets = new Rect(); field in class:TaskStackLayoutAlgorithm
435 boolean changed = !mSystemInsets.equals(systemInsets);
436 mSystemInsets.set(systemInsets);
478 mStackBottomOffset = mSystemInsets.bottom + bottomMargin;
642 float minBottomTaskNormX = getNormalizedXFromUnfocusedY(mSystemInsets.bottom +
1032 (mStackRect.height() - mSystemInsets.bottom - mTaskRect.height()) / 2;
1378 writer.print("insets="); writer.print(Utilities.dumpRect(mSystemInsets));

Completed in 106 milliseconds