Searched refs:lastPage (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/macosx/native/sun/awt/
H A DPrinterView.h40 - (void)setFirstPage:(jint)firstPage lastPage:(jint)lastPage;
H A DPrinterView.m75 - (void)setFirstPage:(jint)firstPage lastPage:(jint)lastPage {
77 fLastPage = lastPage;
H A DCPrinterJob.m510 (JNIEnv *env, jobject jthis, jboolean blocks, jint firstPage, jint lastPage)
529 [printerView setFirstPage:firstPage lastPage:lastPage];
/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/swing/text/
H A DTextComponentPrintable.java713 int lastPage = pagesMetrics.size() - 1;
714 int pageStart = (lastPage >= 0)
715 ? pagesMetrics.get(lastPage).end + 1
/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 308 milliseconds