Home | History | Annotate | Download | only in test

Lines Matching refs:xyRoot

48         int[] xyRoot = new int[2];
49 origin.getLocationOnScreen(xyRoot);
51 int y = xy[1] - xyRoot[1];
70 int[] xyRoot = new int[2];
71 origin.getLocationOnScreen(xyRoot);
73 int y = xy[1] - xyRoot[1];
90 int[] xyRoot = new int[2];
91 origin.getLocationOnScreen(xyRoot);
93 int y = xy[1] - xyRoot[1];
110 int[] xyRoot = new int[2];
111 origin.getLocationOnScreen(xyRoot);
113 assertEquals("x coordinate", x, xy[0] - xyRoot[0]);
114 assertEquals("y coordinate", y, xy[1] - xyRoot[1]);