Home | History | Annotate | Download | only in test

Lines Matching refs:xy

37         int[] xy = new int[2];
38 view.getLocationOnScreen(xy);
43 int y = xy[1] - xyRoot[1];
59 int[] xy = new int[2];
60 view.getLocationOnScreen(xy);
65 int y = xy[1] - xyRoot[1];
79 int[] xy = new int[2];
80 view.getLocationOnScreen(xy);
85 int y = xy[1] - xyRoot[1];
99 int[] xy = new int[2];
100 view.getLocationOnScreen(xy);
105 assertEquals("x coordinate", x, xy[0] - xyRoot[0]);
106 assertEquals("y coordinate", y, xy[1] - xyRoot[1]);
117 int[] xy = new int[2];
118 first.getLocationOnScreen(xy);
119 int firstTop = xy[1] + first.getBaseline();
121 second.getLocationOnScreen(xy);
122 int secondTop = xy[1] + second.getBaseline();
135 int[] xy = new int[2];
136 first.getLocationOnScreen(xy);
137 int firstRight = xy[0] + first.getMeasuredWidth();
139 second.getLocationOnScreen(xy);
140 int secondRight = xy[0] + second.getMeasuredWidth();
154 int[] xy = new int[2];
155 first.getLocationOnScreen(xy);
156 int firstRight = xy[0] + first.getMeasuredWidth();
158 second.getLocationOnScreen(xy);
159 int secondRight = xy[0] + second.getMeasuredWidth();
172 int[] xy = new int[2];
173 first.getLocationOnScreen(xy);
174 int firstLeft = xy[0];
176 second.getLocationOnScreen(xy);
177 int secondLeft = xy[0];
191 int[] xy = new int[2];
192 first.getLocationOnScreen(xy);
193 int firstLeft = xy[0];
195 second.getLocationOnScreen(xy);
196 int secondLeft = xy[0];
209 int[] xy = new int[2];
210 first.getLocationOnScreen(xy);
211 int firstBottom = xy[1] + first.getMeasuredHeight();
213 second.getLocationOnScreen(xy);
214 int secondBottom = xy[1] + second.getMeasuredHeight();
228 int[] xy = new int[2];
229 first.getLocationOnScreen(xy);
230 int firstBottom = xy[1] + first.getMeasuredHeight();
232 second.getLocationOnScreen(xy);
233 int secondBottom = xy[1] + second.getMeasuredHeight();
246 int[] xy = new int[2];
247 first.getLocationOnScreen(xy);
248 int firstTop = xy[1];
250 second.getLocationOnScreen(xy);
251 int secondTop = xy[1];
265 int[] xy = new int[2];
266 first.getLocationOnScreen(xy);
267 int firstTop = xy[1];
269 second.getLocationOnScreen(xy);
270 int secondTop = xy[1];
283 int[] xy = new int[2];
284 reference.getLocationOnScreen(xy);
285 int referenceLeft = xy[0];
287 test.getLocationOnScreen(xy);
288 int testLeft = xy[0];
304 int[] xy = new int[2];
305 reference.getLocationOnScreen(xy);
306 int referenceTop = xy[1];
308 test.getLocationOnScreen(xy);
309 int testTop = xy[1];