Home | History | Annotate | Download | only in launcher3

Lines Matching refs:to

10  * Unless required by applicable law or agreed to in writing, software
46 /** The paint applied to the drag view on hover */
131 // Find the rect to animate to (the view is center aligned)
132 Rect to = new Rect();
133 dragLayer.getViewRectRelativeToSelf(this, to);
142 right = to.right - getPaddingRight();
145 left = to.left + getPaddingLeft();
149 final int top = to.top + (getMeasuredHeight() - height) / 2;
152 to.set(left, top, right, bottom);
157 to.offset(xOffset, yOffset);
159 return to;