Home | History | Annotate | Download | only in launcher3

Lines Matching refs:coord

342     public float getDescendantCoordRelativeToSelf(View descendant, int[] coord) {
343 return getDescendantCoordRelativeToSelf(descendant, coord, false);
351 * @param coord The coordinate that we want mapped.
358 public float getDescendantCoordRelativeToSelf(View descendant, int[] coord,
361 coord, includeRootScroll);
367 public float mapCoordInSelfToDescendent(View descendant, int[] coord) {
368 return Utilities.mapCoordInSelfToDescendent(descendant, this, coord);
512 int coord[] = new int[2];
514 coord[0] = lp.x + (int) (child.getMeasuredWidth() * (1 - childScale) / 2);
515 coord[1] = lp.y + (int) (child.getMeasuredHeight() * (1 - childScale) / 2);
519 float scale = getDescendantCoordRelativeToSelf((View) child.getParent(), coord);
523 int toX = coord[0];
524 int toY = coord[1];