Searched defs:rotate (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/eawt/event/
H A DRotationListener.java42 public void rotate(final RotationEvent e); method in interface:RotationListener
H A DGestureAdapter.java43 public void rotate(final RotationEvent e) { } method in class:GestureAdapter
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DDefaultTableModel.java396 private static void rotate(Vector v, int a, int b, int shift) { method in class:DefaultTableModel
450 rotate(dataVector, first, last + 1, shift);
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DFileHandler.java443 rotate();
539 private synchronized void rotate() { method in class:FileHandler
585 rotate();
/openjdk7/jdk/src/share/classes/java/awt/
H A DGraphics2D.java1009 public abstract void rotate(double theta); method in class:Graphics2D
1021 * rotate(theta);
1030 public abstract void rotate(double theta, double x, double y); method in class:Graphics2D
1101 * <code>transform</code>, <code>rotate</code>, <code>scale</code>,
/openjdk7/jdk/test/java/lang/invoke/
H A DPermuteArgsTest.java269 rotate(perm, start, end);
283 rotate(perm, start, end);
347 static void rotate(int[] perm) { method in class:PermuteArgsTest
348 rotate(perm, 0, perm.length);
350 static void rotate(int[] perm, int start, int end) { method in class:PermuteArgsTest
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken_v2.java237 rotate();
374 * when receiving, we rotate left as per the RRC count, to revert it.
376 private void rotate() { method in class:MessageToken_v2
/openjdk7/jdk/src/share/demo/applets/Fractal/
H A DCLSFractal.java243 turtle.rotate(rotAngle);
246 turtle.rotate(-rotAngle);
363 public void rotate(float theta) { method in class:CLSTurtle
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DAffineTransform.java52 * In some variations of the <code>rotate</code> methods in the
90 * even for a simple case like <code>rotate(Math.PI/2.0)</code>,
658 * Tx.rotate(theta); // S2: rotate around anchor
693 * All coordinates rotate about the origin by the same amount.
719 * All coordinates rotate about the specified anchor coordinates
760 * @param numquadrants the number of 90 degree arcs to rotate by
782 * @param numquadrants the number of 90 degree arcs to rotate by
1326 // Utility methods to optimize rotate methods.
1409 public void rotate(doubl method in class:AffineTransform
1460 public void rotate(double theta, double anchorx, double anchory) { method in class:AffineTransform
1485 public void rotate(double vecx, double vecy) { method in class:AffineTransform
1537 public void rotate(double vecx, double vecy, method in class:AffineTransform
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DPeekGraphics.java234 public void rotate(double theta) { method in class:PeekGraphics
235 mGraphics.rotate(theta);
244 * rotate(theta);
253 public void rotate(double theta, double x, double y) { method in class:PeekGraphics
254 mGraphics.rotate(theta, x, y);
H A DProxyGraphics2D.java170 public void rotate(double theta) { method in class:ProxyGraphics2D
171 mGraphics.rotate(theta);
180 * rotate(theta);
189 public void rotate(double theta, double x, double y) { method in class:ProxyGraphics2D
190 mGraphics.rotate(theta, x, y);
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java754 * After invoking <tt>Collections.rotate(list, 1)</tt> (or
755 * <tt>Collections.rotate(list, -4)</tt>), <tt>list</tt> will comprise
764 * Collections.rotate(list.subList(j, k+1), -1);
770 * Collections.rotate(l.subList(1, 4), -1);
793 * @param distance the distance to rotate the list. There are no
800 public static void rotate(List<?> list, int distance) { method in class:Collections
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java144 * void rotate(int distance)
1249 /** Equivalent to Collections.rotate(this.asList(), dist). */
1250 public void rotate(int dist) { method in class:XMLKit.Element
1251 Collections.rotate(this.asList(), dist);
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java1461 public void rotate(double theta) { method in class:SunGraphics2D
1462 transform.rotate(theta);
1472 * rotate(theta);
1481 public void rotate(double theta, double x, double y) { method in class:SunGraphics2D
1482 transform.rotate(theta, x, y);

Completed in 2685 milliseconds