Searched defs:displayRect (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDevice.java162 * @param displayRect defines where on the display will layerStackRect be
163 * mapped to. displayRect is specified post-orientation, that is
167 Rect layerStackRect, Rect displayRect) {
172 || !mCurrentDisplayRect.equals(displayRect)) {
183 mCurrentDisplayRect.set(displayRect);
186 orientation, layerStackRect, displayRect);
166 setProjectionInTransactionLocked(int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewThumbnail.java356 void bindToTask(Task t, boolean disabledInSafeMode, int displayOrientation, Rect displayRect) { argument
360 mDisplayRect.set(displayRect);
H A DTaskView.java607 Rect displayRect) {
614 mThumbnailView.bindToTask(mTask, mIsDisabledInSafeMode, displayOrientation, displayRect);
606 onTaskBound(Task t, boolean touchExplorationEnabled, int displayOrientation, Rect displayRect) argument
H A DTaskStackLayoutAlgorithm.java459 public void initialize(Rect displayRect, Rect windowRect, Rect taskStackBounds, argument
463 int topMargin = getScaleForExtent(windowRect, displayRect, mBaseTopMargin, mMinMargin, HEIGHT);
464 int bottomMargin = getScaleForExtent(windowRect, displayRect, mBaseBottomMargin, mMinMargin,
466 mInitialTopOffset = getScaleForExtent(windowRect, displayRect, mBaseInitialTopOffset,
1113 public void getTaskStackBounds(Rect displayRect, Rect windowRect, int topInset, int leftInset, argument
1119 int sideMargin = getScaleForExtent(windowRect, displayRect, mBaseSideMargin, mMinMargin,
1127 Math.min(displayRect.width(), displayRect.height()),
1128 Math.max(displayRect.width(), displayRect
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java693 Rect displayRect = ssp.getDisplayRect();
704 calculateWindowStableInsets(systemInsets, windowRect, displayRect);
713 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top,
716 stackLayout.initialize(displayRect, windowRect, mTaskStackBounds,
786 private void calculateWindowStableInsets(Rect inOutInsets, Rect windowRect, Rect displayRect) { argument
789 Rect appRect = new Rect(displayRect);
1040 Rect displayRect = Recents.getSystemServices().getDisplayRect();
1042 result, displayRect.width(), displayRect.height(),
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java495 public Rect getDockedTaskStackBounds(Rect displayRect, int width, int height, argument
516 layoutAlgorithm.getTaskStackBounds(displayRect, windowRectOut, top, 0, insets.right,
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java715 int orientation, Rect layerStackRect, Rect displayRect) {
722 if (displayRect == null) {
723 throw new IllegalArgumentException("displayRect must not be null");
727 displayRect.left, displayRect.top, displayRect.right, displayRect.bottom);
714 setDisplayProjection(IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java802 * @param displayRect The bounds of the display the docked stack is on.
811 Rect displayRect, Rect outBounds, int stackId, Rect dockedBounds, int dockDividerWidth,
814 final boolean splitHorizontally = displayRect.width() > displayRect.height();
816 outBounds.set(displayRect);
1332 static int getDockSideUnchecked(Rect bounds, Rect displayRect, int orientation) { argument
1335 if (bounds.top - displayRect.top <= displayRect.bottom - bounds.bottom) {
1342 if (bounds.left - displayRect.left <= displayRect
810 getStackDockedModeBounds( Rect displayRect, Rect outBounds, int stackId, Rect dockedBounds, int dockDividerWidth, boolean dockOnTopOrLeft) argument
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp192 const Rect& displayRect);
592 const Rect& displayRect) {
597 s.frame = displayRect;
864 const Rect& displayRect) {
866 layerStackRect, displayRect);
589 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument
861 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument

Completed in 209 milliseconds