Searched refs:displayRect (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/
H A DAccessibilityNodeInfoHelper.java43 Rect displayRect = new Rect();
44 displayRect.top = 0;
45 displayRect.left = 0;
46 displayRect.right = width;
47 displayRect.bottom = height;
49 if (nodeRect.intersect(displayRect)) {
/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/core/java/android/view/
H A DSurfaceControl.java725 int orientation, Rect layerStackRect, Rect displayRect) {
732 if (displayRect == null) {
733 throw new IllegalArgumentException("displayRect must not be null");
737 displayRect.left, displayRect.top, displayRect.right, displayRect.bottom);
724 setDisplayProjection(IBinder displayToken, int orientation, Rect layerStackRect, Rect displayRect) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskStackLayoutAlgorithm.java465 public void initialize(Rect displayRect, Rect windowRect, Rect taskStackBounds, argument
469 int topMargin = getScaleForExtent(windowRect, displayRect, mBaseTopMargin, mMinMargin, HEIGHT);
470 int bottomMargin = getScaleForExtent(windowRect, displayRect, mBaseBottomMargin, mMinMargin,
472 mInitialTopOffset = getScaleForExtent(windowRect, displayRect, mBaseInitialTopOffset,
493 + " displayRect=" + displayRect + " windowRect=" + windowRect
1160 public void getTaskStackBounds(Rect displayRect, Rect windowRect, int topInset, int leftInset, argument
1166 int sideMargin = getScaleForExtent(windowRect, displayRect, mBaseSideMargin, mMinMargin,
1174 Math.min(displayRect.width(), displayRect
[all...]
H A DTaskViewThumbnail.java356 void bindToTask(Task t, boolean disabledInSafeMode, int displayOrientation, Rect displayRect) { argument
360 mDisplayRect.set(displayRect);
H A DTaskView.java608 Rect displayRect) {
615 mThumbnailView.bindToTask(mTask, mIsDisabledInSafeMode, displayOrientation, displayRect);
607 onTaskBound(Task t, boolean touchExplorationEnabled, int displayOrientation, Rect displayRect) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DRecentsImpl.java735 Rect displayRect = ssp.getDisplayRect();
746 calculateWindowStableInsets(systemInsets, windowRect, displayRect);
752 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top,
755 stackLayout.initialize(displayRect, windowRect, mTmpBounds,
821 private void calculateWindowStableInsets(Rect inOutInsets, Rect windowRect, Rect displayRect) { argument
824 Rect appRect = new Rect(displayRect);
1080 Rect displayRect = Recents.getSystemServices().getDisplayRect();
1082 result, displayRect.width(), displayRect.height(),
/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...]
H A DWindowStateAnimator.java2037 final Rect displayRect = mService.mTmpRect2;
2046 mService.getDefaultDisplayContentLocked().getLogicalDisplayRect(displayRect);
2047 final float displayWidth = displayRect.width();
2048 final float displayHeight = displayRect.height();
/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
/frameworks/av/cmds/screenrecord/
H A Dscreenrecord.cpp270 Rect displayRect(offX, offY, offX + outWidth, offY + outHeight);
284 layerStackRect, displayRect);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DSystemServicesProxy.java1131 Rect displayRect = new Rect();
1132 if (mDisplay == null) return displayRect;
1136 displayRect.set(0, 0, p.x, p.y);
1137 return displayRect;
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h192 * - displayRect defines where on the display will layerStackRect be
193 * mapped to. displayRect is specified post-orientation, that is
199 const Rect& displayRect);
/frameworks/native/libs/gui/include/gui/
H A DSurfaceComposerClient.h192 * - displayRect defines where on the display will layerStackRect be
193 * mapped to. displayRect is specified post-orientation, that is
199 const Rect& displayRect);
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp464 Rect displayRect(displayRect_left, displayRect_top, displayRect_right, displayRect_bottom);
465 SurfaceComposerClient::setDisplayProjection(token, orientation, layerStackRect, displayRect);
/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,

Completed in 415 milliseconds