Searched defs:page (Results 1 - 18 of 18) sorted by relevance

/openjdk7/jdk/test/java/awt/print/PrinterJob/
H A DMargins.java64 public int print(Graphics g, PageFormat pf, int page) argument
67 if (page > 0) {
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPageDialog.java42 PageFormat page; field in class:WPageDialog
45 WPageDialog(Frame parent, PrinterJob control, PageFormat page, Printable painter) { argument
47 this.page = page;
52 WPageDialog(Dialog parent, PrinterJob control, PageFormat page, Printable painter) { argument
54 this.page = page;
H A DWPrinterJob.java298 private int mPageWidth; // width in pixels of entire page
300 private int mPageHeight; // height in pixels of entire page
395 * The <code>page</code> argument is used to initialize controls
396 * in the page setup dialog.
398 * original <code>page</code> object unmodified.
401 * In either case the original <code>page</code> object will
403 * @param page the default PageFormat presented to the user
405 * @return the original <code>page</code> object if the dialog
414 public PageFormat pageDialog(PageFormat page) throws HeadlessException { argument
420 return super.pageDialog(page);
715 getDefaultPage(PageFormat page) argument
724 defaultPage(PageFormat page) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterPageDialog.java36 CPrinterPageDialog(Frame parent, CPrinterJob printerJob, PageFormat page, Printable painter) { argument
38 fPage = page;
H A DCPrinterJob.java102 * The <code>page</code> argument is used to initialize controls
103 * in the page setup dialog.
105 * original <code>page</code> object unmodified.
108 * In either case, the original <code>page</code> object is
110 * @param page the default <code>PageFormat</code> presented to the
112 * @return the original <code>page</code> object if the dialog
121 public PageFormat pageDialog(PageFormat page) throws HeadlessException { argument
127 return page;
130 PageFormat pageClone = (PageFormat) page.clone();
132 return doIt ? pageClone : page;
142 defaultPage(PageFormat page) argument
433 pageSetup(PageFormat page, Printable painter) argument
459 getDefaultPage(PageFormat page) argument
536 getPageFormatArea(PageFormat page) argument
566 createFirstPassGraphics(PrinterJob printerJob, PageFormat page) argument
575 printToPathGraphics( final PeekGraphics graphics, final PrinterJob printerJob, final Printable painter, final PageFormat page, final int pageIndex, final long context) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DBook.java32 * which pages may have different page formats and page painters. This
70 * Returns the {@link PageFormat} of the page specified by
72 * @param pageIndex the zero based index of the page whose
75 * orientation of the page.
77 * does not contain the requested page
87 * the page specified by <code>pageIndex</code>.
88 * @param pageIndex the zero based index of the page whose
90 * @return the <code>Printable</code> that renders the page.
92 * does not contain the requested page
113 setPage(int pageIndex, Printable painter, PageFormat page) argument
136 append(Printable painter, PageFormat page) argument
153 append(Printable painter, PageFormat page, int numPages) argument
[all...]
H A DPrinterJob.java203 * object, <code>painter</code>. The {@link PageFormat} for each page
204 * is the default page format.
205 * @param painter the <code>Printable</code> that renders each page of
215 * <code>PageFormat</code> of each page is <code>format</code>.
217 * each page of the document
218 * @param format the size and orientation of each page to
226 * page held in the <code>Pageable</code> instance,
317 * The <code>page</code> argument is used to initialize controls
318 * in the page setup dialog.
320 * original <code>page</cod
336 pageDialog(PageFormat page) argument
384 defaultPage(PageFormat page) argument
509 validatePage(PageFormat page) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DPageCache.java27 /** This class implements an LRU page-level cache of configurable page
53 a page on which data was requested was unmapped. This can not
62 // Look up this page
63 Page page = checkPage(getPage(pageBaseAddress), startAddress);
64 // Figure out how many bytes to read from this page
69 page.getDataAsBytes(startAddress, numBytesFromPage, data, numRead);
130 /** Disables the page cache; no further pages will be added to the
138 /** Enables the page cache; fetched pages will be added to the
150 // fast lookup by a page'
206 checkPage(Page page, long startAddress) argument
235 addPageToList(Page page) argument
251 removePageFromList(Page page) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp236 // Return the default page size.
239 // Return the page size to use for a region of memory. The min_pages argument
240 // is a hint intended to limit fragmentation; it says the returned page size
244 // The current implementation ignores min_pages if a larger page size is an
247 // particular, a single page can be used when region_min_size ==
248 // region_max_size == a supported page size.
253 // Methods for tracing page sizes returned by the above method; enabled by
338 // OS interface to polling page
340 static void set_polling_page(address page) { _polling_page = page; } argument
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_ScrollPane.cpp175 void AwtScrollPane::SetScrollInfo(int orient, int max, int page, argument
178 DTRACE_PRINTLN4("AwtScrollPane::SetScrollInfo %d, %d, %d, %d", orient, max, page, disableNoScroll);
191 if (page > 0) {
193 si.nPage = page;
197 // and the page size changes
H A Dawt_PrintJob.cpp88 static const char *PAGEW_STR = "mPageWidth"; // pixel wid of page
89 static const char *PAGEH_STR = "mPageHeight"; // pixel hgt of page
217 orientation and type of page being displayed in the
259 static void pageFormatToSetup(JNIEnv *env, jobject job, jobject page,
273 static jobject getPaper(JNIEnv *env, jobject page);
274 static void setPaper(JNIEnv *env, jobject page, jobject paper);
275 static jint getPageFormatOrientation(JNIEnv *env, jobject page);
276 static void setPageFormatOrientation(JNIEnv *env, jobject page, jint orient);
341 env->GetFieldID(cls, "page", "Ljava/awt/print/PageFormat;");
371 jobject page local
588 Java_sun_awt_windows_WPrinterJob_getDefaultPage(JNIEnv *env, jobject self, jobject page) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java67 private int page; field in class:XScrollbar
399 notifyValue(val - page);
403 notifyValue(val + page);
566 * @param visible is the amount visible per page
596 * @param visible is the amount visible per page
600 * @param page is the block size for increment or decrement of the value
687 * @param visible the amount visible per page
717 page = blockSize;
724 return page;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJEditorPane.java377 * that is greater than or equal to zero, the page will be
386 * be discarded and neither the document or page property
390 * necessary, and then the page property change event
398 * In this case, the page property change event will not be
403 * in the event of failure on the other thread, the page
407 * @param page the URL of the page
409 * page specification, or exception from the stream being read
416 public void setPage(URL page) throws IOException { argument
417 if (page
491 initializeModel(EditorKit kit, URL page) argument
609 PageLoader(Document doc, InputStream in, URL old, URL page) argument
698 URL page; field in class:JEditorPane.PageLoader
727 getStream(URL page) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DRasterPrinterJob.java142 * then each page of a print job will be rendered through
149 * then each page of a print job will be rendered through
212 * of a three page document the page order is:
221 * UNDEFINED_PAGE_NUM then the first page to
222 * be printed is page 0. If 'mLastPage' is
223 * UNDEFINED_PAGE_NUM then the last page to
291 * attributes used by no-args page and print dialog and print method to
303 Rectangle2D region; // Area of page to repaint
325 * of the page
531 updatePageAttributes(PrintService service, PageFormat page) argument
615 pageDialog(PageFormat page) argument
1541 defaultPage(PageFormat page) argument
1596 validatePage(PageFormat page) argument
[all...]
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFontPanel.java143 private PageFormat page = null; field in class:FontPanel
318 page = printer.defaultPage();
321 printer.setPrintable( fc, page );
333 /// Displays the page setup dialog and updates PageFormat info
337 page = printer.defaultPage();
339 page = printer.pageDialog( page );
1018 /// Reset the last page index to max...
1073 /// This indicates that the draw will be completed with this page
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java1275 * See the page property definition in CSS2.
1279 * See the page property definition in CSS2.
1285 public void setPage(String page) argument
1289 * See the page-break-after property definition in CSS2.
1293 * See the page-break-after property definition in CSS2.
1303 * See the page-break-before property definition in CSS2.
1307 * See the page-break-before property definition in CSS2.
1317 * See the page-break-inside property definition in CSS2.
1321 * See the page-break-inside property definition in CSS2.
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java2952 /** TreePageAction handles page up and page down events.
2975 SHARED_ACTION.page(tree, BasicTreeUI.this, direction,
4064 page(tree, ui, -1, false, true);
4067 page(tree, ui, -1, false, false);
4070 page(tree, ui, -1, true, true);
4073 page(tree, ui, 1, false, true);
4076 page(tree, ui, 1, true, true);
4079 page(tree, ui, 1, false, false);
4453 private void page(JTre method in class:BasicTreeUI.Actions
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dassembler_sparc.hpp474 // external_word_type can't be used for values in the first page
586 // op carries format info; see page 62 & 267
839 severalReads = 0, oneRead = 1, severalWritesAndPossiblyReads = 2, oneWrite = 3, page = 4 enumerator in enum:Assembler::PrefetchFcn
847 enum Membar_mask_bits { // page 184, v9
881 enum ASIs { // page 72, v9
1228 // instructions, refer to page numbers in the SPARC Architecture Manual, V9
1345 // page 144 sparc v8 architecture (double prec works on v8 if the source and destination registers are the same). fnegs is the only instruction available
1352 // page 144 sparc v8 architecture (double prec works on v8 if the source and destination registers are the same). fabss is the only instruction available

Completed in 93 milliseconds