Home | History | Annotate | Download | only in util

Lines Matching defs:mFrom

25     protected final Rect mFrom;
43 mFrom = new Rect();
44 dragLayer.getViewRectRelativeToSelf(d.dragView, mFrom);
49 mFrom.left += xOffset;
50 mFrom.right -= xOffset;
51 mFrom.top += yOffset;
52 mFrom.bottom -= yOffset;
66 float sY = -mFrom.bottom;
79 float sX = -mFrom.exactCenterX() + mIconRect.exactCenterX();
94 float sX = -mFrom.right;
107 float sY = -mFrom.exactCenterY() + mIconRect.exactCenterY();
128 dragView.setTranslationX(time * mUX + mFrom.left + mAX * time * time / 2);
129 dragView.setTranslationY(time * mUY + mFrom.top + mAY * time * time / 2);