Searched defs:print (Results 251 - 275 of 598) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DComment.java86 /** Writes comment text to the specified print stream in the appropriate format. */
97 print (indent, printStream);
101 print (indent, printStream);
105 print (indent, printStream);
112 /** Writes comment to the specified print stream without altering its format.
115 private void print (String indent, PrintWriter stream) method in class:Comment
132 } // print
135 * The following routines print formatted comments of differing styles.
140 /** Writes comment in JavaDoc-style to the specified print stream. */
166 /** Writes comment in c-block-style to the specified print strea
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DObjectValue.java75 public void print() { method in class:ObjectValue
80 tty.print("scalarObj[" + id + "]");
88 tty.print(", ");
H A DPCDesc.java99 public void print(NMethod code) { method in class:PCDesc
108 tty.print(" ");
110 tty.print(" @" + sd.getBCI());
111 tty.print(" reexecute=" + sd.getReexecute());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/shared/
H A DImmutableSpace.java88 public void print() { printOn(System.out); } method in class:ImmutableSpace
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DSpace.java106 public void print() { printOn(System.out); } method in class:Space
108 tty.print(" space capacity = ");
109 tty.print(capacity());
110 tty.print(", ");
111 tty.print((double) used() * 100.0/ capacity());
112 tty.print(" used");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DInlineTree.java91 for (int i = 0; i < indent; i++) st.print(" ");
101 public void print(PrintStream st) { method in class:InlineTree
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DStackValue.java110 public void print() { method in class:StackValue
116 tty.print(integerValue + " (long) " + (int) integerValue + " (int)");
118 tty.print("<" + handleValue + ">");
120 tty.print("conflict");
H A DThreadLocalAllocBuffer.java85 public void print() { method in class:ThreadLocalAllocBuffer
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DDebuggerConsolePanel.java90 print(result);
176 private void print(String s) { method in class:DebuggerConsolePanel
188 print("foo> ");
190 print(debugger.getConsolePrompt());
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DIntervalTree.java60 public void print() { method in class:IntervalTree
96 print();
102 print();
159 tty.print(" ");
162 tty.print("-");
/openjdk7/jdk/src/share/classes/javax/print/
H A DPrintService.java26 package javax.print;
30 import javax.print.attribute.Attribute;
31 import javax.print.attribute.AttributeSet;
32 import javax.print.attribute.PrintServiceAttribute;
33 import javax.print.attribute.PrintServiceAttributeSet;
34 import javax.print.event.PrintServiceAttributeListener;
54 * pj.print(doc, aset);
63 /** Returns a String name for this print service which may be used
64 * by applications to request a particular print service.
69 * {@link javax.print
[all...]
H A DPrintServiceLookup.java27 package javax.print;
31 import javax.print.attribute.AttributeSet;
38 * print services (typically equivalent to printers) of a particular type.
58 * be able to locate any print services. Downloaded applets are the most
108 * Locates print services capable of printing the specified
111 * @param flavor the flavor to print. If null, this constraint is not
113 * @param attributes attributes that the print service must support.
117 * representing print services that support the specified flavor
129 * Locates MultiDoc print Services capable of printing MultiDocs
131 * <P> This method is useful to help locate a service that can print
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashAttributeSet.java26 package javax.print.attribute;
H A DResolutionSyntax.java27 package javax.print.attribute;
H A DSetOfIntegerSyntax.java27 package javax.print.attribute;
H A DSize2DSyntax.java27 package javax.print.attribute;
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DJobState.java26 package javax.print.attribute.standard;
28 import javax.print.attribute.Attribute;
29 import javax.print.attribute.EnumSyntax;
30 import javax.print.attribute.PrintJobAttribute;
34 * the current state of a print job. Class JobState defines standard job state
89 * other spooler, awaiting the output device to print it.
H A DMediaPrintableArea.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.DocAttribute;
29 import javax.print.attribute.PrintJobAttribute;
30 import javax.print.attribute.PrintRequestAttribute;
39 * Most printers cannot print on the entire surface of the media, due
41 * the acceptable values for a supposed print job, and to request an area
42 * within the constraints of the printable area to be used in a print job.
59 * See {@link javax.print.PrintService#getSupportedAttributeValues(Class,DocFlavor, AttributeSet) <code>PrintService.getSupportedAttributeValues()</code>}
H A DPresentationDirection.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.Attribute;
28 import javax.print.attribute.EnumSyntax;
29 import javax.print.attribute.PrintJobAttribute;
30 import javax.print.attribute.PrintRequestAttribute;
35 * indicate the layout of multiple print-stream pages to impose upon a
H A DPrinterStateReasons.java25 package javax.print.attribute.standard;
34 import javax.print.attribute.Attribute;
35 import javax.print.attribute.PrintServiceAttribute;
H A DReferenceUriSchemesSupported.java25 package javax.print.attribute.standard;
27 import javax.print.attribute.EnumSyntax;
28 import javax.print.attribute.Attribute;
33 * that a printer can use to retrieve print data stored at a URI location.
34 * If a printer supports doc flavors with a print data representation class of
39 * for printers that can get print data using a certain URI scheme. The
44 * print request's, print job's, or print service's attribute set.
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPageFormat.java26 package java.awt.print;
H A DPaper.java26 package java.awt.print;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DconcurrentG1RefineThread.cpp260 void ConcurrentG1RefineThread::print() const { function in class:ConcurrentG1RefineThread
265 st->print("\"G1 Concurrent Refinement Thread#%d\" ", _worker_id);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DgcTaskThread.hpp73 void print() const { print_on(tty); } function in class:GCTaskThread

Completed in 678 milliseconds

<<11121314151617181920>>