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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewThumbnail.java293 void bindToTask(Task t, boolean disabledInSafeMode, int displayOrientation, Rect displayRect) { argument
297 mDisplayRect.set(displayRect);
H A DTaskView.java592 Rect displayRect) {
598 mThumbnailView.bindToTask(mTask, mIsDisabledInSafeMode, displayOrientation, displayRect);
591 onTaskBound(Task t, boolean touchExplorationEnabled, int displayOrientation, Rect displayRect) argument
H A DTaskStackLayoutAlgorithm.java435 public void initialize(Rect displayRect, Rect windowRect, Rect taskStackBounds, argument
439 int topMargin = getScaleForExtent(windowRect, displayRect, mBaseTopMargin, mMinMargin, HEIGHT);
440 int bottomMargin = getScaleForExtent(windowRect, displayRect, mBaseBottomMargin, mMinMargin,
442 mInitialTopOffset = getScaleForExtent(windowRect, displayRect, mBaseInitialTopOffset,
1061 public void getTaskStackBounds(Rect displayRect, Rect windowRect, int topInset, int rightInset, argument
1067 int sideMargin = getScaleForExtent(windowRect, displayRect, mBaseSideMargin, mMinMargin,
1075 Math.min(displayRect.width(), displayRect.height()),
1076 Math.max(displayRect.width(), displayRect
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDevice.java157 * @param displayRect defines where on the display will layerStackRect be
158 * mapped to. displayRect is specified post-orientation, that is
162 Rect layerStackRect, Rect displayRect) {
167 || !mCurrentDisplayRect.equals(displayRect)) {
178 mCurrentDisplayRect.set(displayRect);
181 orientation, layerStackRect, displayRect);
161 setProjectionInTransactionLocked(int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java495 public Rect getDockedTaskStackBounds(Rect displayRect, int width, int height, argument
514 layoutAlgorithm.getTaskStackBounds(displayRect, windowRectOut, top, insets.right,
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskStack.java716 * @param displayRect The bounds of the display the docked stack is on.
725 Rect displayRect, Rect outBounds, int stackId, Rect dockedBounds, int dockDividerWidth,
728 final boolean splitHorizontally = displayRect.width() > displayRect.height();
730 outBounds.set(displayRect);
1215 static int getDockSideUnchecked(Rect bounds, Rect displayRect, int orientation) { argument
1218 if (bounds.top - displayRect.top <= displayRect.bottom - bounds.bottom) {
1225 if (bounds.left - displayRect.left <= displayRect
724 getStackDockedModeBounds( Rect displayRect, Rect outBounds, int stackId, Rect dockedBounds, int dockDividerWidth, boolean dockOnTopOrLeft) argument
[all...]
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp177 const Rect& displayRect);
493 const Rect& displayRect) {
498 s.frame = displayRect;
722 const Rect& displayRect) {
724 layerStackRect, displayRect);
490 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument
719 setDisplayProjection(const sp<IBinder>& token, uint32_t orientation, const Rect& layerStackRect, const Rect& displayRect) argument
/frameworks/base/core/java/android/view/
H A DSurfaceControl.java628 int orientation, Rect layerStackRect, Rect displayRect) {
635 if (displayRect == null) {
636 throw new IllegalArgumentException("displayRect must not be null");
640 displayRect.left, displayRect.top, displayRect.right, displayRect.bottom);
627 setDisplayProjection(IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect) argument

Completed in 1001 milliseconds