• Home
  • Raw
  • Download

Lines Matching refs:xy

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