Searched defs:lastPage (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterJob.java210 * and lastPage are 0 based page indices.
214 int lastPage = getLastPage();
215 if(lastPage == Pageable.UNKNOWN_NUMBER_OF_PAGES) {
218 lastPage = mDocument.getNumberOfPages() - 1;
242 if (printLoop(false, firstPage, lastPage)) {
261 printLoop(true, firstPage, lastPage);
268 lastPage = prMembers[loopi][1] -1;
487 private native boolean printLoop(boolean waitUntilDone, int firstPage, int lastPage) throws PrinterException; argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DRasterPrinterJob.java1379 * and lastPage are 0 based page indices.
1387 int lastPage = getLastPage();
1388 if(lastPage == Pageable.UNKNOWN_NUMBER_OF_PAGES){
1391 lastPage = mDocument.getNumberOfPages() - 1;
1437 (i <= lastPage ||
1438 lastPage == Pageable.UNKNOWN_NUMBER_OF_PAGES)
1677 * Both 'firstPage' and 'lastPage' are zero based
1682 protected void setPageRange(int firstPage, int lastPage) { argument
1683 if(firstPage >= 0 && lastPage >= 0) {
1685 mLastPage = lastPage;
[all...]
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java456 private int lastPage, printPageNumber, currentlyShownChar = 0; field in class:FontPanel.FontCanvas
1019 lastPage = Integer.MAX_VALUE;
1028 if ( pageIndex > lastPage )
1074 lastPage = pageIndex;

Completed in 40 milliseconds