Searched refs:moveTo (Results 1 - 25 of 69) sorted by relevance

123

/openjdk9/jdk/test/java/awt/geom/Path2D/
H A DEmptyCapacity.java29 * @summary Path2D.moveTo() should work if empty initial capacity was set.
36 path1.moveTo(10, 10);
39 path2.moveTo(10, 10);
H A DFillPPathTest.java54 oddShape.moveTo(50,10);
56 oddShape.moveTo(50,30);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DMIMEPartStreamingDataHandler.java71 public void moveTo(File file) throws IOException { method in class:MIMEPartStreamingDataHandler
72 ds.moveTo(file);
100 void moveTo(File file) throws IOException { method in class:MIMEPartStreamingDataHandler.StreamingDataSource
101 part.moveTo(file);
H A DDataSourceStreamingDataHandler.java48 public void moveTo(File file) throws IOException { method in class:DataSourceStreamingDataHandler
/openjdk9/jdk/src/java.desktop/share/classes/sun/awt/geom/
H A DPathConsumer2D.java30 * @see java.awt.geom.Path2D.Float#moveTo
32 public void moveTo(float x, float y); method in interface:PathConsumer2D
/openjdk9/nashorn/test/script/jfx/
H A Dkaleidoscope.js122 context.moveTo(x+x1,y+y1);
124 context.moveTo(x-x1,y+y1);
126 context.moveTo(x-x1,y-y1);
128 context.moveTo(x+x1,y-y1);
130 context.moveTo(x+y1,y+x1);
132 context.moveTo(x-y1,y+x1);
134 context.moveTo(x-y1,y-x1);
136 context.moveTo(x+y1,y-x1);
138 context.moveTo(x,y+x2);
140 context.moveTo(
[all...]
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/scrolling/
H A DJSplitPaneDriver.java72 moveTo(oper, divOper, divOper.getCenterX() - 1, divOper.getCenterY() - 1);
74 moveTo(oper, divOper, divOper.getCenterX() + 1, divOper.getCenterY() + 1);
127 private void moveTo(JSplitPaneOperator oper, ComponentOperator divOper, int x, int y) { method in class:JSplitPaneDriver
140 moveTo(oper, divOper, divOper.getCenterX() + nextPosition, divOper.getCenterY());
142 moveTo(oper, divOper, divOper.getCenterX(), divOper.getCenterY() + nextPosition);
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/staxex/
H A DStreamingDataHandler.java137 public abstract void moveTo(File dst) throws IOException; method in class:StreamingDataHandler
/openjdk9/jdk/src/java.desktop/share/native/libawt/java2d/pipe/
H A DPathConsumer2D.h49 /* See GeneralPath.moveTo - returns true on error condition. */
82 MoveToFunc *moveTo; member in struct:_PathConsumerVec
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/
H A DHistory.java103 boolean moveTo(int index); method in interface:History
/openjdk9/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/lists/
H A DJTableHeaderDriver.java67 public void moveItem(ComponentOperator oper, int moveColumn, int moveTo) { argument
69 Point end = ((JTableHeaderOperator) oper).getPointToClick(moveTo);
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/marlin/
H A DTransformingPathConsumer2D.java120 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.DeltaScaleFilter
121 out.moveTo(x0 * sx, y0 * sy);
182 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.DeltaTransformFilter
183 out.moveTo(x0 * mxx + y0 * mxy,
243 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.Path2DWrapper
244 p2d.moveTo(x0, y0);
H A DCollinearSimplifier.java95 public void moveTo(float x, float y) { method in class:CollinearSimplifier
97 delegate.moveTo(x, y);
H A DDasher.java33 * (<code>moveTo</code>, <code>lineTo</code>, <code>close</code> and
155 public void moveTo(float x0, float y0) { method in class:Dasher
157 out.moveTo(sx, sy);
231 out.moveTo(x0, y0);
674 out.moveTo(sx, sy);
678 moveTo(sx, sy);
684 out.moveTo(sx, sy);
/openjdk9/jdk/test/sun/java2d/marlin/
H A DCrashTest.java185 path.moveTo(0, 0);
222 path.moveTo(0, 0);
225 path.moveTo(size, 0);
228 path.moveTo(0, 0);
231 path.moveTo(0, 0);
234 path.moveTo(0, 0);
H A DCrashNaNTest.java113 path.moveTo(100, 100);
129 path2.moveTo(0, 0);
190 path.moveTo(100, 100);
206 path2.moveTo(0, 0);
261 path.moveTo(40, 40);
311 path.moveTo(100, NaN);
329 path.moveTo(100, POSITIVE_INFINITY);
356 path.moveTo(100, NEGATIVE_INFINITY);
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/pisces/
H A DTransformingPathConsumer2D.java128 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.TranslateFilter
129 out.moveTo(x0 + tx, y0 + ty);
182 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.ScaleFilter
183 out.moveTo(x0 * sx + tx, y0 * sy + ty);
241 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.TransformFilter
242 out.moveTo(x0 * Mxx + y0 * Mxy + Mxt,
295 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.DeltaScaleFilter
296 out.moveTo(x0 * sx, y0 * sy);
350 public void moveTo(float x0, float y0) { method in class:TransformingPathConsumer2D.DeltaTransformFilter
351 out.moveTo(x
[all...]
H A DDasher.java32 * ({@code moveTo}, {@code lineTo}, {@code close} and
97 public void moveTo(float x0, float y0) { method in class:Dasher
99 out.moveTo(sx, sy);
155 out.moveTo(x0, y0);
555 out.moveTo(sx, sy);
559 moveTo(sx, sy);
564 out.moveTo(sx, sy);
/openjdk9/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DMIMEPart.java134 public void moveTo(File f) { method in class:MIMEPart
135 dataHead.moveTo(f);
/openjdk9/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DImageDecoratedDnDNegative.java74 public void moveTo( method in class:ImageDecoratedDnDNegative
136 moveTo(robot, cur, start);
140 moveTo(robot, start, out);
145 moveTo(robot, out, drop);
/openjdk9/jdk/test/java/awt/BasicStroke/
H A DDashStrokeTest.java46 shape.moveTo(xpoints[0], ypoints[0]);
/openjdk9/jdk/test/sun/java2d/pisces/Renderer/
H A DTest7019861.java64 p.moveTo(x, y);
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/extra/
H A DEditingHistory.java162 fullHistory.moveTo(origIndex);
257 public boolean moveTo(int index) { method in class:EditingHistory
258 return currentDelegate.moveTo(index);
269 moveTo(i);
280 moveTo(i);
/openjdk9/jdk/src/java.desktop/macosx/classes/com/apple/laf/
H A DAquaTextPasswordFieldUI.java112 shape.moveTo( 8.50, 2.00);
122 shape.moveTo(10.75, 12.00);
/openjdk9/jdk/src/java.desktop/share/classes/sun/java2d/pipe/
H A DShapeSpanIterator.java191 public native void moveTo(float x, float y); method in class:ShapeSpanIterator

Completed in 317 milliseconds

123