Lines Matching refs:to
10 * Unless required by applicable law or agreed to in writing, software
44 /** The paint applied to the drag view on hover */
129 // Find the rect to animate to (the view is center aligned)
130 Rect to = new Rect();
131 dragLayer.getViewRectRelativeToSelf(this, to);
140 right = to.right - getPaddingRight();
143 left = to.left + getPaddingLeft();
147 final int top = to.top + (getMeasuredHeight() - height) / 2;
150 to.set(left, top, right, bottom);
155 to.offset(xOffset, yOffset);
157 return to;