Searched defs:percentageDone (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/imageio/event/
H A DIIOWriteProgressListener.java77 * @param percentageDone the approximate percentage of decoding that
81 float percentageDone);
115 * @param percentageDone the approximate percentage of decoding that
118 void thumbnailProgress(ImageWriter source, float percentageDone); argument
80 imageProgress(ImageWriter source, float percentageDone) argument
H A DIIOReadProgressListener.java108 * @param percentageDone the approximate percentage of decoding that
111 void imageProgress(ImageReader source, float percentageDone); argument
145 * @param percentageDone the approximate percentage of decoding that
148 void thumbnailProgress(ImageReader source, float percentageDone); argument
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DWritingInterruptionTest.java168 float percentageDone)
170 if (20f < percentageDone && percentageDone < 80f ) {
183 float percentageDone) {};
167 imageProgress(ImageWriter source, float percentageDone) argument
182 thumbnailProgress(ImageWriter source, float percentageDone) argument
H A DReadingInterruptionTest.java166 float percentageDone)
168 if (20f < percentageDone && percentageDone < 80f) {
187 float percentageDone) {};
165 imageProgress(ImageReader source, float percentageDone) argument
186 thumbnailProgress(ImageReader source, float percentageDone) argument
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/iio/
H A DOutputImageTests.java347 float percentageDone) {}
352 float percentageDone) {}
346 imageProgress(ImageWriter source, float percentageDone) argument
351 thumbnailProgress(ImageWriter source, float percentageDone) argument
H A DInputImageTests.java515 public void imageProgress(ImageReader source, float percentageDone) {} argument
520 float percentageDone) {}
519 thumbnailProgress(ImageReader source, float percentageDone) argument
/openjdk7/jdk/src/share/classes/javax/imageio/
H A DImageWriter.java1770 * @param percentageDone the current percentage of completion,
1773 protected void processImageProgress(float percentageDone) { argument
1781 listener.imageProgress(this, percentageDone);
1832 * @param percentageDone the current percentage of completion,
1835 protected void processThumbnailProgress(float percentageDone) { argument
1843 listener.thumbnailProgress(this, percentageDone);
H A DImageReader.java2067 * @param percentageDone the current percentage of completion,
2070 protected void processImageProgress(float percentageDone) { argument
2078 listener.imageProgress(this, percentageDone);
2129 * @param percentageDone the current percentage of completion,
2132 protected void processThumbnailProgress(float percentageDone) { argument
2140 listener.thumbnailProgress(this, percentageDone);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/bmp/
H A DBMPImageWriter.java1353 public void imageProgress(ImageWriter source, float percentageDone) {
1354 processImageProgress(percentageDone);
1394 public void imageProgress(ImageWriter source, float percentageDone) { argument
1403 public void thumbnailProgress(ImageWriter source, float percentageDone) { argument
H A DBMPImageReader.java1672 float percentageDone)
1674 processImageProgress(percentageDone);
1747 public void imageProgress(ImageReader src, float percentageDone) {} argument
1750 public void thumbnailProgress(ImageReader src, float percentageDone) {} argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJFIFMarkerSegment.java1256 float percentageDone) {
1257 reader.thumbnailProgress(percentageDone);
1262 public void thumbnailProgress(ImageReader source, float percentageDone) {} argument
1255 imageProgress(ImageReader source, float percentageDone) argument
H A DJPEGImageReader.java1366 void thumbnailProgress(float percentageDone) { argument
1369 processThumbnailProgress(percentageDone);
H A DJPEGImageWriter.java1317 void thumbnailProgress(float percentageDone) { argument
1320 processThumbnailProgress(percentageDone);

Completed in 78 milliseconds