Searched defs:pathIter (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java733 * Fill the path defined by <code>pathIter</code>
737 protected void deviceFill(PathIterator pathIter, Color color) { argument
740 psPrinterJob.deviceFill(pathIter, color, getTransform(), getClip());
777 protected void deviceClip(PathIterator pathIter) { argument
H A DPathGraphics.java1096 * Fill the path defined by <code>pathIter</code>
1100 protected abstract void deviceFill(PathIterator pathIter, Color color); argument
1106 protected abstract void deviceClip(PathIterator pathIter); argument
H A DPSPrinterJob.java1834 void convertToPSPath(PathIterator pathIter) { argument
1843 if (pathIter.getWindingRule() == PathIterator.WIND_EVEN_ODD) {
1853 while (pathIter.isDone() == false) {
1854 segmentType = pathIter.currentSegment(segment);
1891 pathIter.next();
1896 * Fill the path defined by <code>pathIter</code>
1900 protected void deviceFill(PathIterator pathIter, Color color, argument
1906 convertToPSPath(pathIter);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java1425 * Fill the path defined by <code>pathIter</code>
1429 protected void deviceFill(PathIterator pathIter, Color color) { argument
1433 convertToWPath(pathIter);
1440 * path defined by <code>pathIter</code>
1443 protected void deviceClip(PathIterator pathIter) { argument
1447 convertToWPath(pathIter);
1664 private void convertToWPath(PathIterator pathIter) { argument
1675 if (pathIter.getWindingRule() == PathIterator.WIND_EVEN_ODD) {
1684 while (pathIter.isDone() == false) {
1685 segmentType = pathIter
[all...]

Completed in 46 milliseconds