Searched refs:print (Results 1 - 25 of 1636) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/javax/script/
H A DTest1.js0 print("Test1 passes");
H A DTest4.js2 print("global run method");
6 run: function() { print("object run method"); }
H A DTest8.js2 print(name);
6 main: function(name) { print(name); }
/openjdk7/jdk/src/share/classes/javax/print/
H A DFlavorException.java26 package javax.print;
28 import javax.print.DocFlavor;
33 * involving a doc flavor or flavors (class {@link javax.print.DocFlavor
34 * DocFlavor}). The Print Service API does not define any print exception
H A DMultiDocPrintJob.java26 package javax.print;
28 import javax.print.attribute.PrintRequestAttributeSet;
32 * Obtained from a MultiDocPrintService, a MultiDocPrintJob can print a
33 * specified collection of documents as a single print job with a set of
42 * This method should only be called once for a given print job.
52 * @param attributes The job attributes to be applied to this print job.
59 * If the document has a flavor not supported by this print job.
61 * If one or more of the attributes are not valid for this print job.
64 public void print(MultiDoc multiDoc, PrintRequestAttributeSet attributes) method in interface:MultiDocPrintJob
H A DAttributeException.java26 package javax.print;
28 import javax.print.attribute.Attribute;
37 * supported. The Print Service API does not define any print exception
51 * {@link javax.print.attribute.Attribute Attribute}.
H A DCancelablePrintJob.java26 package javax.print;
30 * print job. This interface extends {@link DocPrintJob}. A
31 * <code>DocPrintJob</code> implementation returned from a print
32 * service implements this interface if the print job can be
34 * a print job, the client needs to test if the
35 * <code>DocPrintJob</code> object returned from the print service
38 * print service might support cancellation only for certain types
39 * of print data and representation class names. This means that
44 * and to deliver a javax.print.event.PrintJobEvent.JOB_CANCELLED event
48 * than that which made the print reques
[all...]
H A DMultiDocPrintService.java26 package javax.print;
37 * Create a job which can print a multiDoc.
/openjdk7/hotspot/src/share/vm/ci/
H A DciFlags.cpp36 st->print("public");
38 st->print("DEFAULT_ACCESS");
42 st->print(",final");
45 st->print(",super");
48 st->print(",interface");
51 st->print(",abstract");
59 st->print("public");
61 st->print("private");
63 st->print("protected");
65 st->print("DEFAULT_ACCES
97 void ciFlags::print(outputStream* st) { function in class:ciFlags
[all...]
H A DciArray.cpp38 // Implementation of the print method.
40 st->print(" length=%d type=", length());
41 klass()->print(st);
H A DciConstant.cpp36 // ciConstant::print
37 void ciConstant::print() { function in class:ciConstant
38 tty->print("<ciConstant type=%s value=",
42 tty->print("%s", bool_to_str(_value._int != 0));
48 tty->print("%d", _value._int);
51 tty->print(INT64_FORMAT, _value._long);
54 tty->print("%f", _value._float);
57 tty->print("%lf", _value._double);
61 _value._object->print();
64 tty->print("ILLEGA
[all...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DDocAttribute.java27 package javax.print.attribute;
32 * ("Doc" is a short, easy-to-pronounce term that means "a piece of print
37 * attribute in a attribute set which specifies a print job
H A DPrintJobAttribute.java26 package javax.print.attribute;
H A DPrintRequestAttribute.java27 package javax.print.attribute;
32 * requested setting for a print job.
H A DPrintServiceAttribute.java26 package javax.print.attribute;
H A DSupportedValuesAttribute.java27 package javax.print.attribute;
33 * supports the {@link javax.print.attribute.standard.Copies Copies}
35 * javax.print.attribute.standard.CopiesSupported CopiesSupported} attribute,
37 * specify for the {@link javax.print.attribute.standard.Copies Copies}
/openjdk7/hotspot/src/share/vm/runtime/
H A DosThread.cpp43 st->print("nid=0x%lx ", thread_id());
45 case ALLOCATED: st->print("allocated "); break;
46 case INITIALIZED: st->print("initialized "); break;
47 case RUNNABLE: st->print("runnable "); break;
48 case MONITOR_WAIT: st->print("waiting for monitor entry "); break;
49 case CONDVAR_WAIT: st->print("waiting on condition "); break;
50 case OBJECT_WAIT: st->print("in Object.wait() "); break;
51 case BREAKPOINTED: st->print("at breakpoint"); break;
52 case SLEEPING: st->print("sleeping"); break;
53 case ZOMBIE: st->print("zombi
[all...]
/openjdk7/jdk/src/share/classes/sun/print/
H A DAttributeUpdater.java26 package sun.print;
28 import javax.print.attribute.PrintServiceAttributeSet;
34 * this method on a particular print service.
H A DBackgroundLookupListener.java26 package sun.print;
28 import javax.print.PrintService;
H A DBackgroundServiceLookup.java26 package sun.print;
/openjdk7/langtools/test/tools/javac/
H A DFlatnameClash2.java36 public void print(Inner1 inf) { method in class:T1
37 inf.print();
41 public void print() { method in class:T1.Inner1
50 public void print() { method in class:T2
51 super.print(new Inner2());
57 public void print() { method in class:T2.Inner2
/openjdk7/hotspot/src/share/vm/code/
H A Dlocation.cpp33 case on_stack: st->print("empty"); break;
34 case in_register: st->print("invalid"); break;
39 case on_stack: st->print("stack[%d]", stack_offset()); break;
40 case in_register: st->print("reg %s [%d]", reg()->name(), register_number()); break;
41 default: st->print("Wrong location where %d", where());
45 case oop: st->print(",oop"); break;
46 case narrowoop: st->print(",narrowoop"); break;
47 case int_in_long: st->print(",int"); break;
48 case lng: st->print(",long"); break;
49 case float_in_dbl: st->print(",floa
[all...]
/openjdk7/jdk/src/share/classes/javax/print/event/
H A DPrintJobAttributeListener.java26 package javax.print.event;
30 * {@link javax.print.DocPrintJob DocPrintJob} to monitor
31 * the status of attribute changes associated with the print job.
37 * Notifies the listener of a change in some print job attributes.
39 * {@link javax.print.attribute.standard.JobState JobState}
H A DPrintServiceAttributeListener.java26 package javax.print.event;
30 * {@link javax.print.PrintService PrintService} to monitor
31 * the status of the print service.
40 * Called to notify a listener of an event in the print service.
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterGraphics.java26 package java.awt.print;
43 * @see java.awt.print.Printable

Completed in 83 milliseconds

1234567891011>>