Home
last modified time | relevance | path

Searched refs:topRight (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java94 public static Quad fromLineAndHeight(PointF topLeft, PointF topRight, float height) { in fromLineAndHeight() argument
95 PointF dp = new PointF(topRight.x - topLeft.x, topRight.y - topLeft.y); in fromLineAndHeight()
99 PointF p3 = new PointF(topRight.x - np.x, topRight.y + np.y); in fromLineAndHeight()
100 return new Quad(topLeft, topRight, p2, p3); in fromLineAndHeight()
155 public PointF topRight() { in topRight() method in Quad
189 PointF topRight = rotatePoint(topRight(), 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
321 mTopRight = topRight; in Quad()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/gestural/
H A DBackPanel.kt477 topRight = farCorner,
523 topRight: Float = 0f,
529 topRight, topRight,
/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java421 quad.topRight().x, quad.topRight().y, in setSourceQuad()
469 quad.topRight().x, quad.topRight().y, in setTargetQuad()
/aosp14/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java229 float topRight = (float) Math.sqrt(xCeilingSq + yFloorSq); in plot()
232 float sum = topLeft + topRight + btmLeft + btmRight; in plot()
240 value = topRight / sum; in plot()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
H A DPrivacyDotViewController.kt403 fun initialize(topLeft: View, topRight: View, bottomLeft: View, bottomRight: View) {
406 if (tl == topLeft && tr == topRight && bl == bottomLeft && br == bottomRight) {
412 tr = topRight
/aosp14/frameworks/base/core/java/android/view/
H A DRoundedCorners.java80 public RoundedCorners(RoundedCorner topLeft, RoundedCorner topRight, RoundedCorner bottomRight, in RoundedCorners() argument
84 mRoundedCorners[POSITION_TOP_RIGHT] = topRight; in RoundedCorners()