Searched refs:systemInsets (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/view/
H A DWindowCallbacks.java44 * @param systemInsets The current visible system insets for the window.
47 void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
55 * @param systemInsets The current visible system insets for the window.
58 void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
H A DViewRootImpl.java7215 private void startDragResizing(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
7221 systemInsets, stableInsets, resizeMode);
/frameworks/base/core/java/com/android/internal/policy/
H A DBackdropFrameRenderer.java81 boolean fullscreen, Rect systemInsets, Rect stableInsets, int resizeMode) {
98 mSystemInsets.set(systemInsets);
100 mOldSystemInsets.set(systemInsets);
156 * @param systemInsets The current visible system insets for the window.
159 public void setTargetRect(Rect newTargetBounds, boolean fullscreen, Rect systemInsets, argument
164 mSystemInsets.set(systemInsets);
306 * @param systemInsets The current visible system insets for the window.
309 private void redrawLocked(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
357 drawColorViews(left, top, width, height, fullscreen, systemInsets, stableInsets);
366 boolean fullscreen, Rect systemInsets, Rec
78 BackdropFrameRenderer(DecorView decorView, ThreadedRenderer renderer, Rect initialBounds, Drawable resizingBackgroundDrawable, Drawable captionBackgroundDrawable, Drawable userCaptionBackgroundDrawable, int statusBarColor, int navigationBarColor, boolean fullscreen, Rect systemInsets, Rect stableInsets, int resizeMode) argument
365 drawColorViews(int left, int top, int width, int height, boolean fullscreen, Rect systemInsets, Rect stableInsets) argument
[all...]
H A DDecorView.java2024 public void onWindowSizeIsChanging(Rect newBounds, boolean fullscreen, Rect systemInsets, argument
2027 mBackdropFrameRenderer.setTargetRect(newBounds, fullscreen, systemInsets, stableInsets);
2032 public void onWindowDragResizeStart(Rect initialBounds, boolean fullscreen, Rect systemInsets, argument
2048 getCurrentColor(mNavigationColorViewState), fullscreen, systemInsets,
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java605 Rect systemInsets = new Rect();
606 ssp.getStableInsets(systemInsets);
614 windowRect.bottom -= systemInsets.bottom;
615 systemInsets.bottom = 0;
617 calculateWindowStableInsets(systemInsets, windowRect);
623 stackLayout.setSystemInsets(systemInsets);
625 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top,
626 systemInsets.left, systemInsets.right, mTaskStackBounds);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
H A DTaskGridLayoutAlgorithm.java283 public void setSystemInsets(Rect systemInsets) { argument
284 mSystemInsets = systemInsets;
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java316 final Rect systemInsets = insets.getSystemWindowInsets();
319 boolean changed = applyInsets(mActionBarTop, systemInsets, true, true, false, true);
321 changed |= applyInsets(mActionBarBottom, systemInsets, true, false, true, true);
324 mBaseInnerInsets.set(systemInsets);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java286 final Rect systemInsets = insets;
289 boolean changed = applyInsets(mActionBarTop, systemInsets, true, true, false, true);
291 mBaseInnerInsets.set(systemInsets);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackView.java1225 public void setSystemInsets(Rect systemInsets) { argument
1227 changed |= mStableLayoutAlgorithm.setSystemInsets(systemInsets);
1228 changed |= mLayoutAlgorithm.setSystemInsets(systemInsets);
1943 Rect systemInsets = new Rect(mStableLayoutAlgorithm.mSystemInsets);
1948 height -= systemInsets.bottom;
1949 systemInsets.bottom = 0;
1951 height, mDividerSize, systemInsets,
1953 mLayoutAlgorithm.setSystemInsets(systemInsets);
H A DTaskStackLayoutAlgorithm.java431 public boolean setSystemInsets(Rect systemInsets) { argument
432 boolean changed = !mSystemInsets.equals(systemInsets);
433 mSystemInsets.set(systemInsets);
434 mTaskGridLayoutAlgorithm.setSystemInsets(systemInsets);

Completed in 2902 milliseconds