Lines Matching refs:points
247 float[] points = recycle == null ? new float[4] : recycle; in getBoundsForViewInDragLayer() local
248 points[0] = viewBounds.left; in getBoundsForViewInDragLayer()
249 points[1] = viewBounds.top; in getBoundsForViewInDragLayer()
250 points[2] = viewBounds.right; in getBoundsForViewInDragLayer()
251 points[3] = viewBounds.bottom; in getBoundsForViewInDragLayer()
253 Utilities.getDescendantCoordRelativeToAncestor(view, dragLayer, points, in getBoundsForViewInDragLayer()
256 Math.min(points[0], points[2]), in getBoundsForViewInDragLayer()
257 Math.min(points[1], points[3]), in getBoundsForViewInDragLayer()
258 Math.max(points[0], points[2]), in getBoundsForViewInDragLayer()
259 Math.max(points[1], points[3])); in getBoundsForViewInDragLayer()
288 public static void offsetPoints(float[] points, float offsetX, float offsetY) { in offsetPoints() argument
289 for (int i = 0; i < points.length; i += 2) { in offsetPoints()
290 points[i] += offsetX; in offsetPoints()
291 points[i + 1] += offsetY; in offsetPoints()