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 */
127 // Find the rect to animate to (the view is center aligned)
128 Rect to = new Rect();
129 dragLayer.getViewRectRelativeToSelf(this, to);
138 right = to.right - getPaddingRight();
141 left = to.left + getPaddingLeft();
145 final int top = to.top + (getMeasuredHeight() - height) / 2;
148 to.set(left, top, right, bottom);
153 to.offset(xOffset, yOffset);
155 return to;