Home
last modified time | relevance | path

Searched refs:systemInsets (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
DWindowCallbacksCompat.java29 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets,
31 WindowCallbacksCompat.this.onWindowSizeIsChanging(newBounds, fullscreen, systemInsets,
37 Rect systemInsets, Rect stableInsets, int resizeMode) {
39 systemInsets, stableInsets, resizeMode);
69 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, in onWindowSizeIsChanging() argument
72 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, in onWindowDragResizeStart() argument
/frameworks/base/core/java/com/android/internal/policy/
DBackdropFrameRenderer.java81 boolean fullscreen, Rect systemInsets, Rect stableInsets) { in BackdropFrameRenderer() argument
98 mSystemInsets.set(systemInsets); in BackdropFrameRenderer()
100 mOldSystemInsets.set(systemInsets); in BackdropFrameRenderer()
160 public void setTargetRect(Rect newTargetBounds, boolean fullscreen, Rect systemInsets, in setTargetRect() argument
165 mSystemInsets.set(systemInsets); in setTargetRect()
310 private void redrawLocked(Rect newBounds, boolean fullscreen, Rect systemInsets, in redrawLocked() argument
358 drawColorViews(left, top, width, height, fullscreen, systemInsets, stableInsets); in redrawLocked()
367 boolean fullscreen, Rect systemInsets, Rect stableInsets) { in drawColorViews() argument
383 DecorView.getNavigationBarRect(width, height, stableInsets, systemInsets, mTmpRect, 1f); in drawColorViews()
DDecorView.java2262 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, in onWindowSizeIsChanging() argument
2265 mBackdropFrameRenderer.setTargetRect(newBounds, fullscreen, systemInsets, stableInsets); in onWindowSizeIsChanging()
2270 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, in onWindowDragResizeStart() argument
2286 getCurrentColor(mNavigationColorViewState), fullscreen, systemInsets, in onWindowDragResizeStart()
/frameworks/base/core/java/android/view/
DWindowCallbacks.java48 void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, in onWindowSizeIsChanging() argument
59 void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, in onWindowDragResizeStart() argument
DViewRootImpl.java8562 private void startDragResizing(Rect initialBounds, boolean fullscreen, Rect systemInsets, in startDragResizing() argument
8569 initialBounds, fullscreen, systemInsets, stableInsets, resizeMode); in startDragResizing()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/
DRecentsImpl.java749 Rect systemInsets = new Rect(); in updateDummyStackViewLayout() local
750 ssp.getStableInsets(systemInsets); in updateDummyStackViewLayout()
756 if (systemInsets.bottom < windowRect.height()) { in updateDummyStackViewLayout()
758 windowRect.bottom -= systemInsets.bottom; in updateDummyStackViewLayout()
760 systemInsets.bottom = 0; in updateDummyStackViewLayout()
762 calculateWindowStableInsets(systemInsets, windowRect, displayRect); in updateDummyStackViewLayout()
766 stackLayout.setSystemInsets(systemInsets); in updateDummyStackViewLayout()
768 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top, in updateDummyStackViewLayout()
769 systemInsets.left, systemInsets.right, mTmpBounds); in updateDummyStackViewLayout()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/lowram/
DTaskStackLowRamLayoutAlgorithm.java80 public void setSystemInsets(Rect systemInsets) { in setSystemInsets() argument
81 mSystemInsets = systemInsets; in setSystemInsets()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/grid/
DTaskGridLayoutAlgorithm.java287 public void setSystemInsets(Rect systemInsets) {
288 mSystemInsets = systemInsets;
/frameworks/base/core/java/android/widget/
DMagnifier.java733 final Insets systemInsets = mView.getRootWindowInsets().getSystemWindowInsets(); in getCurrentClampedWindowCoordinates() local
735 systemInsets.left + mParentSurface.mInsets.left, in getCurrentClampedWindowCoordinates()
736 systemInsets.top + mParentSurface.mInsets.top, in getCurrentClampedWindowCoordinates()
737 mParentSurface.mWidth - systemInsets.right - mParentSurface.mInsets.right, in getCurrentClampedWindowCoordinates()
738 mParentSurface.mHeight - systemInsets.bottom in getCurrentClampedWindowCoordinates()
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/
DTaskStackView.java1170 public void setSystemInsets(Rect systemInsets) { in setSystemInsets() argument
1172 changed |= mStableLayoutAlgorithm.setSystemInsets(systemInsets); in setSystemInsets()
1173 changed |= mLayoutAlgorithm.setSystemInsets(systemInsets); in setSystemInsets()
1912 Rect systemInsets = new Rect(mStableLayoutAlgorithm.mSystemInsets); in onBusEvent() local
1917 height -= systemInsets.bottom; in onBusEvent()
1918 systemInsets.bottom = 0; in onBusEvent()
1920 height, mDividerSize, systemInsets, in onBusEvent()
1922 mLayoutAlgorithm.setSystemInsets(systemInsets); in onBusEvent()
DTaskStackLayoutAlgorithm.java348 public boolean setSystemInsets(Rect systemInsets) { in setSystemInsets() argument
349 boolean changed = !mSystemInsets.equals(systemInsets); in setSystemInsets()
350 mSystemInsets.set(systemInsets); in setSystemInsets()
351 mTaskGridLayoutAlgorithm.setSystemInsets(systemInsets); in setSystemInsets()
352 mTaskStackLowRamLayoutAlgorithm.setSystemInsets(systemInsets); in setSystemInsets()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java318 final Rect systemInsets = insets.getSystemWindowInsetsAsRect();
321 boolean changed = applyInsets(mActionBarTop, systemInsets, true, true, false, true);
323 changed |= applyInsets(mActionBarBottom, systemInsets, true, false, true, true);