Searched defs:print (Results 451 - 475 of 598) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStatement.java330 out.print(" ");
333 public void print(PrintStream out, int indent) { method in class:Statement
336 out.print(labels[i] + ": ");
339 public void print(PrintStream out) { method in class:Statement
340 print(out, 0);
/openjdk7/jdk/src/share/classes/sun/net/www/
H A DMessageHeader.java290 public synchronized void print(PrintStream p) { method in class:MessageHeader
293 p.print(keys[i] +
296 p.print("\r\n");
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSPathGraphics.java26 package sun.print;
49 import java.awt.print.PageFormat;
50 import java.awt.print.Printable;
51 import java.awt.print.PrinterException;
52 import java.awt.print.PrinterJob;
160 * TextLayout renders text as GlyphVectors. We try to print those
277 * print opaque region of transparent image
415 * This will be done in a later call to print using the
690 painter.print(proxy, pageFormat, pageIndex);
H A DRasterPrinterJob.java26 package sun.print;
46 import java.awt.print.Book;
47 import java.awt.print.Pageable;
48 import java.awt.print.PageFormat;
49 import java.awt.print.Paper;
50 import java.awt.print.Printable;
51 import java.awt.print.PrinterAbortException;
52 import java.awt.print.PrinterException;
53 import java.awt.print.PrinterJob;
62 import javax.print
1276 public void print() throws PrinterException { method in class:RasterPrinterJob
1287 public void print(PrintRequestAttributeSet attributes) method in class:RasterPrinterJob
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuBarPeer.java445 void print(Graphics g) { method in class:XMenuBarPeer
/openjdk7/jdk/src/solaris/classes/sun/print/
H A DAttributeClass.java25 package sun.print;
H A DUnixPrintServiceLookup.java26 package sun.print;
38 import javax.print.DocFlavor;
39 import javax.print.MultiDocPrintService;
40 import javax.print.PrintService;
41 import javax.print.PrintServiceLookup;
42 import javax.print.attribute.Attribute;
43 import javax.print.attribute.AttributeSet;
44 import javax.print.attribute.HashPrintRequestAttributeSet;
45 import javax.print.attribute.HashPrintServiceAttributeSet;
46 import javax.print
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCodeBlob.java212 public void print() { method in class:CodeBlob
217 tty.print(getName());
H A DLocation.java291 public void print() { method in class:Location
296 tty.print("Value " + value + ", ");
298 tty.print("Illegal");
302 tty.print("stack[" + getStackOffset() + "]");
304 tty.print("reg " + getRegisterNumber());
310 tty.print(",oop");
312 tty.print(",narrowoop");
314 tty.print(",int");
316 tty.print(",long");
318 tty.print(",floa
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DCellTypeState.java243 public void print(PrintStream tty) { method in class:CellTypeState
245 tty.print("(p");
247 tty.print("( ");
250 tty.print("r");
252 tty.print(" ");
255 tty.print("v");
257 tty.print(" ");
260 tty.print("u|");
262 tty.print(" |");
265 tty.print("To
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DComponentPeer.java175 * by {@link Component#printAll(Graphics)} to print the component.
177 * @param g the graphics context to print to
181 void print(Graphics g); method in interface:ComponentPeer
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethodData.cpp365 // Implementation of the print method.
371 void ciMethodData::print() { function in class:ciMethodData
379 st->print("%d", dp_to_di(data->dp()));
395 st->print("%d", dp_to_di(data->dp()));
H A DciObject.hpp91 // Virtual behavior of the print() method.
303 void print(outputStream* st);
304 void print() { print(tty); } // GDB cannot handle default arguments function in class:ciObject
/openjdk7/hotspot/src/share/vm/classfile/
H A Ddictionary.cpp129 print();
617 void Dictionary::print() { function in class:Dictionary
630 if (Verbose) tty->print("%4d: ", index);
635 tty->print("%s%s", is_defining_class ? " " : "^",
638 tty->print(", loader ");
/openjdk7/hotspot/src/share/vm/code/
H A DcompiledIC.cpp57 tty->print(" ");
98 tty->print(" ");
250 print();
635 void CompiledIC::print() { function in class:CompiledIC
642 tty->print("Inline cache at " INTPTR_FORMAT ", calling %s " INTPTR_FORMAT,
647 void CompiledStaticCall::print() { function in class:CompiledStaticCall
648 tty->print("static call at " INTPTR_FORMAT " -> ", instruction_address());
650 tty->print("clean");
652 tty->print("compiled");
654 tty->print("interprete
[all...]
H A DdebugInfoRec.cpp219 // and make it simpler to print from the debugger.
227 void print() { function in struct:dir_stats_struct
419 dir_stats.print();
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp109 void print() const { print_on(tty); } function in class:ConcurrentMarkSweepThread
249 gclog_or_tty->print(buf);
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsOldGen.cpp425 void PSOldGen::print() const { print_on(tty);} function in class:PSOldGen
427 st->print(" %-15s", name());
429 st->print(" total " SIZE_FORMAT ", used " SIZE_FORMAT,
432 st->print(" total " SIZE_FORMAT "K, used " SIZE_FORMAT "K",
440 st->print(" object"); object_space()->print_on(st);
444 gclog_or_tty->print(" [%s:", name());
445 gclog_or_tty->print(" " SIZE_FORMAT "K"
450 gclog_or_tty->print("]");
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.hpp642 virtual void print() const { function in class:CollectedHeap
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateInterpreter.cpp53 if (PrintInterpreter) print();
103 void EntryPoint::print() { function in class:EntryPoint
104 tty->print("[");
106 if (i > 0) tty->print(", ");
107 tty->print(INTPTR_FORMAT, _entry[i]);
109 tty->print("]");
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp79 void NativeInstruction::print() { function in class:NativeInstruction
143 void NativeCall::print() { function in class:NativeCall
223 nc->print();
229 nc->print();
233 nc->print();
272 void NativeFarCall::print() { function in class:NativeFarCall
325 void NativeMovConstReg::print() { function in class:NativeMovConstReg
398 nm->print();
405 nm->print();
437 void NativeMovConstRegPatching::print() { function in class:NativeMovConstRegPatching
565 void NativeMovRegMem::print() { function in class:NativeMovRegMem
710 void NativeMovRegMemPatching::print() { function in class:NativeMovRegMemPatching
844 void NativeJump::print() { function in class:NativeJump
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_FrameMap.hpp284 void print () const { function in class:CallingConvention
286 at(i)->print();
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCPrinterJob.java32 import java.awt.print.*;
34 import javax.print.*;
35 import javax.print.attribute.PrintRequestAttributeSet;
36 import javax.print.attribute.standard.PageRanges;
39 import sun.print.*;
70 * the print job.
71 * This method will display a native dialog if a native print
73 * to these native print services.
74 * To present the cross platform print dialog for all services,
190 public void print(PrintRequestAttributeSe method in class:CPrinterJob
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.hpp237 void print() const { print_on(tty); } function in class:ThreadSafepointState
H A DvframeArray.cpp396 f->print();
405 tty->print(" ");
409 tty->print(" - %s", Bytecodes::name(code));
410 tty->print(" @ bci %d ", bci);
604 st->print(" - thread: ");
605 Thread::current()->print();
608 element(index)->print(st);
612 void vframeArrayElement::print(outputStream* st) { function in class:vframeArrayElement

Completed in 610 milliseconds

<<11121314151617181920>>