Home | History | Annotate | Download | only in launcher2

Lines Matching refs:coord

199      * @param coord The coordinate that we want mapped.
202 public float getDescendantCoordRelativeToSelf(View descendant, int[] coord) {
204 float[] pt = {coord[0], coord[1]};
218 coord[0] = (int) Math.round(pt[0]);
219 coord[1] = (int) Math.round(pt[1]);
361 int coord[] = new int[2];
362 coord[0] = lp.x;
363 coord[1] = lp.y;
366 float scale = getDescendantCoordRelativeToSelf((View) child.getParent(), coord);
367 int toX = coord[0];
368 int toY = coord[1];