Home | History | Annotate | Download | only in test

Lines Matching defs:xy

45         int[] xy = new int[2];
46 view.getLocationOnScreen(xy);
51 int y = xy[1] - xyRoot[1];
67 int[] xy = new int[2];
68 view.getLocationOnScreen(xy);
73 int y = xy[1] - xyRoot[1];
87 int[] xy = new int[2];
88 view.getLocationOnScreen(xy);
93 int y = xy[1] - xyRoot[1];
107 int[] xy = new int[2];
108 view.getLocationOnScreen(xy);
113 assertEquals("x coordinate", x, xy[0] - xyRoot[0]);
114 assertEquals("y coordinate", y, xy[1] - xyRoot[1]);
125 int[] xy = new int[2];
126 first.getLocationOnScreen(xy);
127 int firstTop = xy[1] + first.getBaseline();
129 second.getLocationOnScreen(xy);
130 int secondTop = xy[1] + second.getBaseline();
143 int[] xy = new int[2];
144 first.getLocationOnScreen(xy);
145 int firstRight = xy[0] + first.getMeasuredWidth();
147 second.getLocationOnScreen(xy);
148 int secondRight = xy[0] + second.getMeasuredWidth();
162 int[] xy = new int[2];
163 first.getLocationOnScreen(xy);
164 int firstRight = xy[0] + first.getMeasuredWidth();
166 second.getLocationOnScreen(xy);
167 int secondRight = xy[0] + second.getMeasuredWidth();
180 int[] xy = new int[2];
181 first.getLocationOnScreen(xy);
182 int firstLeft = xy[0];
184 second.getLocationOnScreen(xy);
185 int secondLeft = xy[0];
199 int[] xy = new int[2];
200 first.getLocationOnScreen(xy);
201 int firstLeft = xy[0];
203 second.getLocationOnScreen(xy);
204 int secondLeft = xy[0];
217 int[] xy = new int[2];
218 first.getLocationOnScreen(xy);
219 int firstBottom = xy[1] + first.getMeasuredHeight();
221 second.getLocationOnScreen(xy);
222 int secondBottom = xy[1] + second.getMeasuredHeight();
236 int[] xy = new int[2];
237 first.getLocationOnScreen(xy);
238 int firstBottom = xy[1] + first.getMeasuredHeight();
240 second.getLocationOnScreen(xy);
241 int secondBottom = xy[1] + second.getMeasuredHeight();
254 int[] xy = new int[2];
255 first.getLocationOnScreen(xy);
256 int firstTop = xy[1];
258 second.getLocationOnScreen(xy);
259 int secondTop = xy[1];
273 int[] xy = new int[2];
274 first.getLocationOnScreen(xy);
275 int firstTop = xy[1];
277 second.getLocationOnScreen(xy);
278 int secondTop = xy[1];
291 int[] xy = new int[2];
292 reference.getLocationOnScreen(xy);
293 int referenceLeft = xy[0];
295 test.getLocationOnScreen(xy);
296 int testLeft = xy[0];
312 int[] xy = new int[2];
313 reference.getLocationOnScreen(xy);
314 int referenceTop = xy[1];
316 test.getLocationOnScreen(xy);
317 int testTop = xy[1];