Searched refs:pathIter (Results 1 - 6 of 6) sorted by relevance

/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...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DJavacPathFileManager.java219 Iterator<? extends Path> pathIter = searchPath.iterator();
220 if (!pathIter.hasNext())
222 Path path = pathIter.next();
223 if (pathIter.hasNext())
/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 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);
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
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java833 Iterator<? extends File> pathIter = path.iterator();
834 if (!pathIter.hasNext())
836 File dir = pathIter.next();
837 if (pathIter.hasNext())

Completed in 67 milliseconds