Searched refs:firstPage (Results 1 - 5 of 5) 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 {
76 fFirstPage = firstPage;
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.java209 * the end of the document. Note that firstPage
213 int firstPage = getFirstPage();
242 if (printLoop(false, firstPage, lastPage)) {
261 printLoop(true, firstPage, lastPage);
267 firstPage = prMembers[loopi][0]-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.java1378 * the end of the document. Note that firstPage
1386 int firstPage = getFirstPage();
1436 for(int i = firstPage, pageResult = Printable.PAGE_EXISTS;
1677 * Both 'firstPage' and 'lastPage' are zero based
1682 protected void setPageRange(int firstPage, int lastPage) { argument
1683 if(firstPage >= 0 && lastPage >= 0) {
1684 mFirstPage = firstPage;

Completed in 56 milliseconds