Searched defs:bottomRight (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/transition/
H A DChangeBounds.java99 new Property<ViewBounds, PointF>(PointF.class, "bottomRight") {
101 public void set(ViewBounds viewBounds, PointF bottomRight) {
102 viewBounds.setBottomRight(bottomRight);
112 new Property<View, PointF>(PointF.class, "bottomRight") {
114 public void set(View view, PointF bottomRight) {
117 int right = Math.round(bottomRight.x);
118 int bottom = Math.round(bottomRight.y);
381 Path bottomRight = getPathMotion().getPath(startRight, startBottom,
384 bottomRight);
492 public void setBottomRight(PointF bottomRight) { argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/
H A DQuad.java171 public PointF bottomRight() { method in class:Quad
191 PointF bottomRight = rotatePoint(bottomRight(), center, cosa, sina);
193 return new Quad(topLeft, topRight, bottomLeft, bottomRight);
319 private Quad(PointF topLeft, PointF topRight, PointF bottomLeft, PointF bottomRight) { argument
323 mBottomRight = bottomRight;
/frameworks/support/transition/src/main/java/androidx/transition/
H A DChangeBounds.java100 new Property<ViewBounds, PointF>(PointF.class, "bottomRight") {
102 public void set(ViewBounds viewBounds, PointF bottomRight) {
103 viewBounds.setBottomRight(bottomRight);
113 new Property<View, PointF>(PointF.class, "bottomRight") {
115 public void set(View view, PointF bottomRight) {
118 int right = Math.round(bottomRight.x);
119 int bottom = Math.round(bottomRight.y);
336 Path bottomRight = getPathMotion().getPath(startRight, startBottom,
339 bottomRight);
481 void setBottomRight(PointF bottomRight) { argument
[all...]
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/
H A DStyledCornersBitmapDrawable.java480 private void setCornerStyles(int topLeft, int topRight, int bottomRight, int bottomLeft) { argument
483 || mBottomRightCornerStyle != bottomRight
488 mBottomRightCornerStyle = bottomRight;
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp248 const Color& bottomLeft, const Color& bottomRight, bool filtered = false,
264 bottomRight, tolerance);
348 const Color& bottomRight) {
358 fillBufferColor(buffer, Rect(halfW, halfH, buffer.width, buffer.height), bottomRight);
247 expectQuadrant(const Rect& rect, const Color& topLeft, const Color& topRight, const Color& bottomLeft, const Color& bottomRight, bool filtered = false, uint8_t tolerance = 0) argument
346 fillLayerQuadrant(const sp<SurfaceControl>& layer, const Color& topLeft, const Color& topRight, const Color& bottomLeft, const Color& bottomRight) argument

Completed in 162 milliseconds