Searched refs:mouseMove (Results 51 - 75 of 110) sorted by relevance

12345

/openjdk7/jdk/test/javax/swing/text/StyledEditorKit/4506788/
H A Dbug4506788.java78 robot.mouseMove(p.x, p.y);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXRobotPeer.java54 public void mouseMove(int x, int y) { method in class:XRobotPeer
/openjdk7/jdk/test/java/awt/Menu/OpensWithNoGrab/
H A DOpensWithNoGrab.java96 robot.mouseMove(choicePt.x + ch.getWidth()/2, choicePt.y + ch.getHeight()/2);
105 robot.mouseMove(choicePt.x + 10, choicePt.y - 15);
112 robot.mouseMove(choicePt.x + 15, choicePt.y + 15);
/openjdk7/jdk/test/java/awt/Robot/ManualInstructions/
H A DManualInstructions.java62 robot.mouseMove(updateTargetLocation().x, updateTargetLocation().y);
76 robot.mouseMove(updateTargetLocation().x, updateTargetLocation().y);
90 robot.mouseMove(updateTargetLocation().x, updateTargetLocation().y);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DImageDecoratedDnDNegative.java89 r.mouseMove(
94 r.mouseMove(
128 robot.mouseMove(sourcePoint.x, sourcePoint.y);
/openjdk7/jdk/test/java/awt/event/MouseEvent/RobotLWTest/
H A DRobotLWTest.java75 robot.mouseMove(pt1.x + b.getWidth()/2, pt1.y + b.getHeight()/2);
78 robot.mouseMove(pt.x + frame.getWidth()+10, pt.y + frame.getHeight()+10);
91 robot.mouseMove(pt1.x + b.getWidth()/2, pt1.y + b.getHeight()/2);
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DUtil.java140 robot.mouseMove(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2);
179 robot.mouseMove(p.x, p.y);
309 robot.mouseMove(startPoint.x, startPoint.y);
312 mouseMove(robot, startPoint, endPoint);
326 public static void mouseMove(Robot robot, Point startPoint, Point endPoint) { method in class:Util
344 robot.mouseMove(x, y);
360 robot.mouseMove(x, y);
/openjdk7/jdk/test/java/awt/Dialog/MakeWindowAlwaysOnTop/
H A DMakeWindowAlwaysOnTop.java81 r.mouseMove(p.x + f.getWidth() / 2, p.y + f.getHeight() / 2);
/openjdk7/jdk/test/java/awt/EventDispatchThread/LoopRobustness/
H A DLoopRobustness.java123 robot.mouseMove(b.getLocationOnScreen().x + b.getWidth()/2,
/openjdk7/jdk/test/java/awt/Focus/SimpleWindowActivationTest/
H A DSimpleWindowActivationTest.java138 robot.mouseMove(point.x, point.y);
/openjdk7/jdk/test/java/awt/List/EmptyListEventTest/
H A DEmptyListEventTest.java60 robot.mouseMove(point.x, point.y);
/openjdk7/jdk/test/java/awt/Toolkit/ToolkitPropertyTest/
H A DToolkitPropertyTest_Enable.java52 robot.mouseMove(frame.getLocationOnScreen().x + frame.getWidth()/2, frame.getLocationOnScreen().y + frame.getHeight()/2);
/openjdk7/jdk/test/java/awt/WMSpecificTests/Mutter/
H A DMutterMaximizeTest.java105 robot.mouseMove(p.x, p.y);
/openjdk7/jdk/test/java/awt/dnd/FileListBetweenJVMsTest/
H A DFileListBetweenJVMsTest.java109 robot.mouseMove((int)dragSourcePoint.getX(),(int)dragSourcePoint.getY());
/openjdk7/jdk/test/java/awt/dnd/URIListBetweenJVMsTest/
H A DURIListBetweenJVMsTest.java118 robot.mouseMove((int)dragSourcePoint.getX(),(int)dragSourcePoint.getY());
/openjdk7/jdk/test/java/awt/event/MouseEvent/EventTimeInFuture/
H A DEventTimeInFuture.java62 Util.mouseMove(robot, start, end);
/openjdk7/jdk/test/javax/swing/JInternalFrame/
H A DTest6505027.java99 robot.mouseMove(point.x + 1, point.y + 1);
/openjdk7/jdk/test/javax/swing/JPopupMenu/6800513/
H A Dbug6800513.java105 robot.mouseMove(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2);
/openjdk7/jdk/test/javax/swing/JSlider/6348946/
H A Dbug6348946.java89 robot.mouseMove((int) clickX, (int) clickY);
/openjdk7/jdk/test/javax/swing/JTable/4220171/
H A Dbug4220171.java98 robot.mouseMove(point.x, point.y);
/openjdk7/jdk/test/javax/swing/JToolTip/4846413/
H A Dbug4846413.java65 robot.mouseMove(movePoint.x, movePoint.y);
/openjdk7/jdk/test/javax/swing/JTree/6505523/
H A Dbug6505523.java67 robot.mouseMove(point.x, point.y);
/openjdk7/jdk/test/javax/swing/JTree/8004298/
H A Dbug8004298.java79 robot.mouseMove(point.x, point.y);
/openjdk7/jdk/test/javax/swing/text/DefaultEditorKit/4278839/
H A Dbug4278839.java128 robo.mouseMove(rect.x + rect.width / 2, rect.y + rect.width / 2);
/openjdk7/jdk/src/share/classes/java/awt/
H A DRobot.java52 * queue. For example, <code>Robot.mouseMove</code> will actually move
75 // location of robot's GC, used in mouseMove(), getPixelColor() and captureScreenImage()
102 * to Robot method calls like mouseMove and createScreenCapture will
202 public synchronized void mouseMove(int x, int y) { method in class:Robot
203 peer.mouseMove(gdLoc.x + x, gdLoc.y + y);

Completed in 73 milliseconds

12345