Searched refs:xyRoot (Results 1 – 2 of 2) sorted by relevance
40 int[] xyRoot = new int[2]; in assertOnScreen() local41 origin.getLocationOnScreen(xyRoot); in assertOnScreen()43 int y = xy[1] - xyRoot[1]; in assertOnScreen()62 int[] xyRoot = new int[2]; in assertOffScreenBelow() local63 origin.getLocationOnScreen(xyRoot); in assertOffScreenBelow()65 int y = xy[1] - xyRoot[1]; in assertOffScreenBelow()82 int[] xyRoot = new int[2]; in assertOffScreenAbove() local83 origin.getLocationOnScreen(xyRoot); in assertOffScreenAbove()85 int y = xy[1] - xyRoot[1]; in assertOffScreenAbove()102 int[] xyRoot = new int[2]; in assertHasScreenCoordinates() local[all …]
203 int[] xyRoot = new int[2]; in assertOnBottomEdgeOfScreen() local204 origin.getLocationOnScreen(xyRoot); in assertOnBottomEdgeOfScreen()207 int bottomOfRoot = xyRoot[1] + origin.getHeight(); in assertOnBottomEdgeOfScreen()224 int[] xyRoot = new int[2]; in assertOnTopEdgeOfScreen() local225 origin.getLocationOnScreen(xyRoot); in assertOnTopEdgeOfScreen()228 int bottomOfRoot = xyRoot[1] + origin.getHeight(); in assertOnTopEdgeOfScreen()231 assertTrue(bottom > xyRoot[1]); in assertOnTopEdgeOfScreen()233 assertTrue(xy[1] < xyRoot[1]); in assertOnTopEdgeOfScreen()