Home | History | Annotate | Download | only in transition

Lines Matching refs:topLeft

87             new Property<ViewBounds, PointF>(PointF.class, "topLeft") {
89 public void set(ViewBounds viewBounds, PointF topLeft) {
90 viewBounds.setTopLeft(topLeft);
130 new Property<View, PointF>(PointF.class, "topLeft") {
132 public void set(View view, PointF topLeft) {
133 int left = Math.round(topLeft.x);
134 int top = Math.round(topLeft.y);
149 public void set(View view, PointF topLeft) {
150 int left = Math.round(topLeft.x);
151 int top = Math.round(topLeft.y);
481 public void setTopLeft(PointF topLeft) {
482 mLeft = Math.round(topLeft.x);
483 mTop = Math.round(topLeft.y);