Searched defs:print (Results 201 - 225 of 598) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceNotifier.java26 package sun.print;
30 import javax.print.PrintService;
31 import javax.print.attribute.PrintServiceAttributeSet;
32 import javax.print.attribute.HashPrintServiceAttributeSet;
33 import javax.print.event.PrintServiceAttributeEvent;
34 import javax.print.event.PrintServiceAttributeListener;
37 * A utility class usable by all print services for managing listeners
H A DSunAlternateMedia.java26 package sun.print;
28 import javax.print.attribute.PrintRequestAttribute;
29 import javax.print.attribute.standard.Media;
H A DSunMinMaxPage.java26 package sun.print;
28 import javax.print.attribute.PrintRequestAttribute;
H A DSunPageSelection.java26 package sun.print;
28 import javax.print.attribute.PrintRequestAttribute;
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterJob.java26 package java.awt.print;
32 import javax.print.DocFlavor;
33 import javax.print.PrintService;
34 import javax.print.PrintServiceLookup;
35 import javax.print.StreamPrintServiceFactory;
36 import javax.print.attribute.PrintRequestAttributeSet;
37 import javax.print.attribute.standard.Media;
38 import javax.print.attribute.standard.MediaPrintableArea;
39 import javax.print.attribute.standard.MediaSize;
40 import javax.print
519 public abstract void print() throws PrinterException; method in class:PrinterJob
559 public void print(PrintRequestAttributeSet attributes) method in class:PrinterJob
[all...]
H A DBook.java26 package java.awt.print;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DIntStack.java81 public void print() { method in class:IntStack
82 System.out.print('(');
83 System.out.print(fDepth);
84 System.out.print(") {");
87 System.out.print(" ...");
90 System.out.print(' ');
91 System.out.print(fData[i]);
93 System.out.print(',');
96 System.out.print(" }");
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DClassType.java67 * @param writer The stream to print to.
68 * @param useQualifiedNames If true, print qualified names; otherwise, print unqualified names.
69 * @param useIDLNames If true, print IDL names; otherwise, print java names.
72 public void print ( IndentingWriter writer, method in class:ClassType
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_interface/
H A DCollectedHeap.java80 public void print() { printOn(System.out); } method in class:CollectedHeap
/openjdk7/jdk/src/share/classes/javax/print/
H A DStreamPrintServiceFactory.java26 package javax.print;
33 import javax.print.DocFlavor;
42 * which can print to an output stream in a particular
86 * Locates factories for print services that can be used with
87 * a print job to output a stream of data in the
104 * @return - matching factories for stream print service instance,
131 * Returns a <code>StreamPrintService</code> that can print to
136 * The application should not close this stream until any print job
145 * the print system with
148 * {@link DocPrintJob#print(Do
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSet.java26 package javax.print.attribute;
71 * print job settings to be applied to an individual doc.
77 * to be applied to a whole print job and to all the docs in the print job.
81 * PrintJobAttribute PrintJobAttribute}s, reports the status of a print job.
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DCompression.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.DocAttribute;
33 * specifies how print data is compressed. Compression is an attribute of the
34 * print data (the doc), not of the Print Job. If a Compression attribute is not
35 * specified for a doc, the printer assumes the doc's print data is uncompressed
H A DMediaTray.java25 package javax.print.attribute.standard;
29 import javax.print.attribute.Attribute;
30 import javax.print.attribute.EnumSyntax;
H A DMultipleDocumentHandling.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.PrintRequestAttribute;
30 import javax.print.attribute.PrintJobAttribute;
35 * print-stream pages into impressions and onto media sheets. When the value of
38 * documents are produced. This attribute is relevant only for a multidoc print
42 * multiple input (electronic) documents fed into a multidoc print job and the
43 * output (physical) document or documents produced by the multidoc print job.
74 * <B><CODE>SINGLE_DOCUMENT</CODE></B>}</A>. If a print jo
[all...]
H A DOrientationRequested.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.DocAttribute;
30 import javax.print.attribute.PrintRequestAttribute;
31 import javax.print.attribute.PrintJobAttribute;
35 * that indicates the desired orientation for printed print-stream pages; it
36 * does not describe the orientation of the client-supplied print-stream
40 * the desired orientation of the print-stream pages is specified within the
42 * the submission of the print jo
[all...]
H A DPrintQuality.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.DocAttribute;
30 import javax.print.attribute.PrintRequestAttribute;
31 import javax.print.attribute.PrintJobAttribute;
35 * that specifies the print quality that the printer uses for the job.
66 * Construct a new print quality enumeration value with the given integer
127 * name is <CODE>"print-quality"</CODE>.
132 return "print
[all...]
H A DPrinterState.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.PrintServiceAttribute;
H A DSides.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.DocAttribute;
30 import javax.print.attribute.PrintRequestAttribute;
31 import javax.print.attribute.PrintJobAttribute;
35 * how print-stream pages are to be imposed upon the sides of an instance of a
38 * The effect of a Sides attribute on a multidoc print job (a job with multiple
84 * print-stream page of the next input doc goes at the start of the next media
127 * Imposes each consecutive print
[all...]
/openjdk7/hotspot/src/share/vm/ci/
H A DciSignature.cpp145 // ciSignature::print
146 void ciSignature::print() { function in class:ciSignature
147 tty->print("<ciSignature symbol=");
149 tty->print(" accessing_klass=");
150 _accessing_klass->print();
151 tty->print(" address=0x%x>", (address)this);
H A DciSymbol.hpp104 void print() { function in class:ciSymbol
105 _symbol->print();
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DBasicLogEvent.java74 abstract public void print(PrintStream stream); method in class:BasicLogEvent
H A DNMethod.java40 public void print(PrintStream out) { method in class:NMethod
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDesktopPeer.java56 public void print(File file) throws IOException { method in class:CDesktopPeer
76 private void lsOpenFile(File file, boolean print) throws IOException { argument
77 int status = _lsOpenFile(file.getCanonicalPath(), print);
80 throw new IOException("Failed to open, edit or print " + file + ". Error code: " + status);
86 private static native int _lsOpenFile(String path, boolean print); argument
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DAdobeMarkerSegment.java125 void print () { method in class:AdobeMarkerSegment
127 System.out.print("Version: ");
129 System.out.print("Flags0: 0x");
131 System.out.print("Flags1: 0x");
133 System.out.print("Transform: ");
/openjdk7/hotspot/src/share/vm/runtime/
H A DstackValueCollection.cpp149 void StackValueCollection::print() { function in class:StackValueCollection
151 tty->print("\t %2d ", index);
156 tty->print(" " INT64_FORMAT " (long)", long_at(index));
158 tty->print("\t %.15e (double)", double_at(index));
159 tty->print(" " PTR64_FORMAT " (longhex)", long_at(index));

Completed in 145 milliseconds

1234567891011>>