Searched refs:print (Results 251 - 275 of 1636) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/javax/management/remote/mandatory/connection/
H A DMultiThreadDeadLockTest.java39 print("Create the MBean server");
42 print("Initialize environment map");
45 print("Specify a client socket factory to control socket creation.");
49 print("Specify a server idle timeout to make a server close an idle connection.");
52 print("Disable client heartbeat.");
57 print("Create an RMI server");
65 print("Create jmx client on "+url);
72 print("Register the mbean: " + totoName);
74 print("Add listener to toto MBean");
79 print("sen
244 private static void print(String m) { method in class:MultiThreadDeadLockTest
[all...]
/openjdk7/jdk/test/javax/print/attribute/
H A DMediaMappingsTest.java31 import javax.print.attribute.standard.MediaSize;
32 import javax.print.attribute.standard.MediaSizeName;
/openjdk7/jdk/src/share/classes/sun/print/
H A DPSStreamPrintService.java26 package sun.print;
32 import javax.print.DocFlavor;
33 import javax.print.DocPrintJob;
34 import javax.print.StreamPrintService;
35 import javax.print.StreamPrintServiceFactory;
36 import javax.print.ServiceUIFactory;
37 import javax.print.attribute.Attribute;
38 import javax.print.attribute.AttributeSet;
39 import javax.print.attribute.AttributeSetUtilities;
40 import javax.print
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DMessageOutput.java111 System.out.print(line);
114 System.out.print(c);
126 * Format and print a simple string.
128 static void print(String key) { method in class:MessageOutput
129 System.out.print(format(key));
132 * Format and print a simple string.
140 * Fetch, format and print a message with one string argument.
143 static void print(String key, String argument) { method in class:MessageOutput
144 System.out.print(format(key, argument));
151 * Fetch, format and print
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DLocalVariableTableWriter.java120 print(indent);
121 print(kind.text);
122 print(" local ");
123 print(entry.index);
124 print(" // ");
127 print(d.getFieldType(constant_pool));
129 print(report(e));
131 print(report(e));
133 print(" ");
135 print(constant_poo
[all...]
H A DLocalVariableTypeTableWriter.java121 print(indent);
122 print(kind.text);
123 print(" generic local ");
124 print(entry.index);
125 print(" // ");
128 print(d.getFieldType(constant_pool).toString().replace("/", "."));
130 print(report(e));
132 print(report(e));
134 print(" ");
136 print(constant_poo
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DCharacterScript.java12 static void print(String fmt, Object... o) { method in class:CharacterScript
167 print("public class Scripts {%n%n");
168 print(" public static enum UnicodeScript {%n");
170 print(" /**%n * Unicode script \"%s\".%n */%n", names[i]);
171 print(" %s,%n%n", names[i].toUpperCase(Locale.US));
173 print(" /**%n * Unicode script \"Unknown\".%n */%n UNKNOWN;%n%n");
177 print(" private static final int[] scriptStarts = {%n");
183 print(" 0x%04X, // %04X..%04X; %s%n",
186 print(" 0x%05X, // %05X..%05X; %s%n",
191 print("
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DMethodEntryExitEvents.java58 System.out.print ("MethodEntryExitEventsDebugee: ");
59 System.out.print (" -->> Hello. j is: ");
60 System.out.print (j);
78 System.out.print(c);
167 System.out.print (" Method entry number: ");
168 System.out.print (methodEntryCount);
169 System.out.print (" : ");
180 System.out.print (" Method exit number: ");
181 System.out.print (methodExitCount);
182 System.out.print ("
[all...]
/openjdk7/jdk/test/sun/net/www/http/HttpClient/
H A DB6726695.java163 out.print("HTTP/1.1 417 Expectation Failed\r\n");
164 out.print("Server: Sun-Java-System-Web-Server/7.0\r\n");
165 out.print("Connection: close\r\n");
166 out.print("Content-Length: 0\r\n");
167 out.print("\r\n");
182 out.print("HTTP/1.1 100 Continue\r\n");
183 out.print("\r\n");
197 out.print("HTTP/1.1 200 OK");
198 out.print("Server: Sun-Java-System-Web-Server/7.0\r\n");
199 out.print("Connectio
[all...]
/openjdk7/hotspot/test/compiler/6714694/
H A DTester.java146 result += "Tester_Class_1.var_7 = "; result += Tester.Printer.print(var_7);
148 result += "Tester_Class_1.var_3 = "; result += Tester.Printer.print(var_3);
150 result += "Tester_Class_1.var_8 = "; result += Tester.Printer.print(var_8);
152 result += "Tester_Class_1.var_1 = "; result += Tester.Printer.print(var_1);
154 result += "Tester_Class_1.var_4 = "; result += Tester.Printer.print(var_4);
156 result += "Tester_Class_1.var_5 = "; result += Tester.Printer.print(var_5);
158 result += "Tester_Class_1.var_2 = "; result += Tester.Printer.print(var_2);
160 result += "Tester_Class_1.var_9 = "; result += Tester.Printer.print(var_9);
162 result += "Tester_Class_1.var_6 = "; result += Tester.Printer.print(var_6);
234 result += "Tester_Class_2.var_7 = "; result += Tester.Printer.print(var_
686 public static String print(boolean arg) { return String.valueOf(arg); } method in class:Tester.Printer
687 public static String print(byte arg) { return String.valueOf(arg); } method in class:Tester.Printer
688 public static String print(short arg) { return String.valueOf(arg); } method in class:Tester.Printer
689 public static String print(char arg) { return String.valueOf((int)arg); } method in class:Tester.Printer
690 public static String print(int arg) { return String.valueOf(arg); } method in class:Tester.Printer
691 public static String print(long arg) { return String.valueOf(arg); } method in class:Tester.Printer
692 public static String print(float arg) { return String.valueOf(arg); } method in class:Tester.Printer
693 public static String print(double arg) { return String.valueOf(arg); } method in class:Tester.Printer
696 public static String print(Object arg) method in class:Tester.Printer
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DPrintStream.java36 * namely the ability to print representations of various data values
127 * Creates a new print stream. This stream will not flush automatically.
139 * Creates a new print stream.
155 * Creates a new print stream.
181 * Creates a new print stream, without automatic line flushing, with the
189 * The name of the file to use as the destination of this print
212 * Creates a new print stream, without automatic line flushing, with the
219 * The name of the file to use as the destination of this print
252 * Creates a new print stream, without automatic line flushing, with the
260 * The file to use as the destination of this print strea
570 public void print(boolean b) { method in class:PrintStream
582 public void print(char c) { method in class:PrintStream
596 public void print(int i) { method in class:PrintStream
610 public void print(long l) { method in class:PrintStream
624 public void print(float f) { method in class:PrintStream
638 public void print(double d) { method in class:PrintStream
652 public void print(char s[]) { method in class:PrintStream
665 public void print(String s) { method in class:PrintStream
682 public void print(Object obj) { method in class:PrintStream
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DPseudoSchemaBuilder.java224 print("<xs:import namespace=''{0}''/>", ns);
233 print(
245 print(
255 print("<xs:element name=''{0}''>", elementName.getLocalPart());
256 print("<xs:complexType>");
257 print("<xs:sequence>");
263 print("<xs:element ref=''types:{0}'' xmlns:types=''{1}''/>",p.getDescriptor().getLocalPart(), p.getDescriptor().getNamespaceURI());
265 print("<xs:element name=''{0}'' type=''{1}'' xmlns=''{2}'' />",
272 print("</xs:sequence>");
273 print("</x
294 private void print( String msg ) { method in class:PseudoSchemaBuilder
297 private void print( String msg, Object arg1 ) { method in class:PseudoSchemaBuilder
300 private void print( String msg, Object arg1, Object arg2 ) { method in class:PseudoSchemaBuilder
303 private void print( String msg, Object arg1, Object arg2, Object arg3 ) { method in class:PseudoSchemaBuilder
306 private void print( String msg, Object[] args ) { method in class:PseudoSchemaBuilder
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java35 * Initilizes PrintWriter with FileWriter, to enable print
411 print("<BODY BGCOLOR=\"" + bgcolor + "\"");
413 print(getWindowTitleOnload());
429 // Don't print windowtitle script for overview-frame, allclasses-frame
500 print("<LI>");
509 print("<LI TYPE=\"" + type + "\">");
672 print("<PRE>");
732 print("<STRONG>");
739 print("</STRONG>");
749 print(tex
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DMachSafePointNode.java63 if (jvms != null) out.print(" !");
64 if (jvms == null) out.print("empty jvms");
68 out.print(" " + m.getMethodHolder().getName().asString().replace('/', '.') + "::" + m.getName().asString() + " @ bci:" + bci);
72 out.print(e);
/openjdk7/jdk/src/share/classes/javax/print/
H A DServiceUIFactory.java26 package javax.print;
31 * One role may be end-user browsing and setting of print options.
32 * Another role may be administering the print service.
35 * support for administering a print service, monitoring of the print
H A DStreamPrintService.java26 package javax.print;
32 * print service that prints data in different formats to a
45 * {@link javax.print.attribute.standard.Destination Destination}
67 * @param out stream to which to send formatted print data.
76 * @return the stream to which this service will send formatted print data.
83 * Returns the document format emitted by this print service.
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DHashDocAttributeSet.java27 package javax.print.attribute;
H A DHashPrintJobAttributeSet.java27 package javax.print.attribute;
46 * Construct a new, empty hash print job attribute set.
53 * Construct a new hash print job attribute set,
66 * Construct a new hash print job attribute set,
H A DHashPrintRequestAttributeSet.java27 package javax.print.attribute;
46 * Construct a new, empty print request attribute set.
53 * Construct a new print request attribute set,
66 * Construct a new print request attribute set, initially populated with
H A DHashPrintServiceAttributeSet.java26 package javax.print.attribute;
45 * Construct a new, empty hash print service attribute set.
53 * Construct a new hash print service attribute set,
66 * Construct a new print service attribute set, initially populated with
/openjdk7/jdk/src/share/classes/javax/print/event/
H A DPrintJobAdapter.java26 package javax.print.event;
29 * An abstract adapter class for receiving print job events.
44 * transferred to the print service, and the client may free
H A DPrintJobListener.java26 package javax.print.event;
30 * {@link javax.print.DocPrintJob DocPrintJob} to monitor the status of
33 * print job, or a service created notification thread. In either case
41 * transferred to the print service, and the client may free
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterIOException.java26 package java.awt.print;
36 * "<code>IOException</code> that terminated the print job"
46 * The IO error that terminated the print job.
64 * the print job.
71 * the print job.
80 * that terminated the print job).
/openjdk7/hotspot/src/share/vm/classfile/
H A Dplaceholders.cpp208 void PlaceholderEntry::print() const { function in class:PlaceholderEntry
211 tty->print(", loader ");
215 tty->print(", supername ");
219 tty->print(", definer ");
223 tty->print(", instanceKlass ");
226 tty->print("\n");
227 tty->print("loadInstanceThreadQ threads:");
229 tty->print("\n");
230 tty->print("superThreadQ threads:");
232 tty->print("\
263 void PlaceholderTable::print() { function in class:PlaceholderTable
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DReachableQuery.java56 // Now, print out the sorted list, but start with root
61 out.print("<strong>");
81 out.print("<h3>");
82 print(title);
86 print(fields[i]);

Completed in 1458 milliseconds

<<11121314151617181920>>