Home
last modified time | relevance | path

Searched refs:bottomRight (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/pip/phone/
DPipResizeGestureHandlerTest.java129 int bottomRight = 500; in twoInput_triggersPinchResize_getBigger() local
130 mPipBoundsState.setBounds(new Rect(topLeft, topLeft, bottomRight, bottomRight)); in twoInput_triggersPinchResize_getBigger()
134 bottomRight -= STEP_SIZE; in twoInput_triggersPinchResize_getBigger()
136 obtainMotionEvent(MotionEvent.ACTION_POINTER_DOWN, topLeft, bottomRight); in twoInput_triggersPinchResize_getBigger()
141 bottomRight += STEP_SIZE; in twoInput_triggersPinchResize_getBigger()
142 MotionEvent moveEvent1 = obtainMotionEvent(MotionEvent.ACTION_MOVE, topLeft, bottomRight); in twoInput_triggersPinchResize_getBigger()
147 bottomRight += STEP_SIZE; in twoInput_triggersPinchResize_getBigger()
148 MotionEvent moveEvent2 = obtainMotionEvent(MotionEvent.ACTION_MOVE, topLeft, bottomRight); in twoInput_triggersPinchResize_getBigger()
154 MotionEvent upEvent = obtainMotionEvent(MotionEvent.ACTION_UP, topLeft, bottomRight); in twoInput_triggersPinchResize_getBigger()
170 int bottomRight = 500; in twoInput_triggersPinchResize_getSmaller() local
[all …]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
DQuad.java171 public PointF bottomRight() { in bottomRight() method in Quad
191 PointF bottomRight = rotatePoint(bottomRight(), center, cosa, sina); in rotated() local
193 return new Quad(topLeft, topRight, bottomLeft, bottomRight); in rotated()
319 private Quad(PointF topLeft, PointF topRight, PointF bottomLeft, PointF bottomRight) { in Quad() argument
323 mBottomRight = bottomRight; in Quad()
/frameworks/base/core/java/android/transition/
DChangeBounds.java103 public void set(ViewBounds viewBounds, PointF bottomRight) {
104 viewBounds.setBottomRight(bottomRight);
117 public void set(View view, PointF bottomRight) {
120 int right = Math.round(bottomRight.x);
121 int bottom = Math.round(bottomRight.y);
385 Path bottomRight = getPathMotion().getPath(startRight, startBottom, in createAnimator() local
388 bottomRight); in createAnimator()
496 public void setBottomRight(PointF bottomRight) { in setBottomRight() argument
497 mRight = Math.round(bottomRight.x); in setBottomRight()
498 mBottom = Math.round(bottomRight.y); in setBottomRight()
/frameworks/native/services/surfaceflinger/tests/
DLayerTransactionTest.h166 const Color& bottomRight) { in fillLayerQuadrant() argument
170 bottomLeft, bottomRight); in fillLayerQuadrant()
174 bottomLeft, bottomRight); in fillLayerQuadrant()
184 const Color& bottomRight) { in fillBufferQueueLayerQuadrant() argument
199 bottomRight); in fillBufferQueueLayerQuadrant()
207 const Color& bottomRight) { in fillBufferStateLayerQuadrant() argument
225 bottomRight); in fillBufferStateLayerQuadrant()
DTransactionTestHarnesses.h136 const Color& bottomLeft, const Color& bottomRight) { in fillLayerQuadrant() argument
140 bottomLeft, bottomRight)); in fillLayerQuadrant()
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DStatsFilter.java85 quad.bottomRight().x, quad.bottomRight().y, mStats); in calcMeanAndStd()
DImageShader.java423 quad.bottomRight().x, quad.bottomRight().y }); in setSourceQuad()
471 quad.bottomRight().x, quad.bottomRight().y }); in setTargetQuad()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
DBackPanel.kt482 bottomRight = farCorner in hasOverlappingRendering()
528 bottomRight: Float = 0f, in RectF()
534 bottomRight, bottomRight, in RectF()
/frameworks/base/core/tests/coretests/src/android/widget/layout/table/
DHorizontalGravityTest.java48 mBottomRight = activity.findViewById(R.id.bottomRight); in setUp()
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
DStyledCornersBitmapDrawable.java480 private void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) { in setCornerStyles() argument
483 || mBottomRightCornerStyle != bottomRight in setCornerStyles()
488 mBottomRightCornerStyle = bottomRight; in setCornerStyles()
/frameworks/native/services/surfaceflinger/tests/utils/
DScreenshotUtils.h137 const Color& bottomLeft, const Color& bottomRight, bool filtered = false,
153 bottomRight, tolerance);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DPrivacyDotViewController.kt398 fun initialize(topLeft: View, topRight: View, bottomLeft: View, bottomRight: View) { in <lambda>()
401 if (tl == topLeft && tr == topRight && bl == bottomLeft && br == bottomRight) { in <lambda>()
409 br = bottomRight in <lambda>()
/frameworks/base/core/java/android/view/
DRoundedCorners.java80 public RoundedCorners(RoundedCorner topLeft, RoundedCorner topRight, RoundedCorner bottomRight, in RoundedCorners() argument
85 mRoundedCorners[POSITION_BOTTOM_RIGHT] = bottomRight; in RoundedCorners()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/
DPipTaskOrganizer.java1578 final Rect bottomRight = new Rect(); in isPipTopLeft() local
1579 mSplitScreenOptional.get().getStageBounds(topLeft, bottomRight); in isPipTopLeft()
1727 final Rect bottomRight = new Rect(); in syncWithSplitScreenBounds() local
1728 mSplitScreenOptional.get().getStageBounds(topLeft, bottomRight); in syncWithSplitScreenBounds()
1729 destinationBoundsOut.set(isPipToTopLeft() ? topLeft : bottomRight); in syncWithSplitScreenBounds()