Searched defs:out (Results 201 - 225 of 910) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javah/
H A DT6893943.java83 void expect(String name, String out, int actual_rc, int expect_rc) throws Exception { argument
84 if (out.isEmpty())
87 if (!out.startsWith("Usage:")) {
88 System.err.println(out);
/openjdk7/langtools/test/tools/javap/
H A DT4459541.java46 out = new PrintWriter(new BufferedWriter(new FileWriter(f)));
77 out.close();
91 PrintWriter out = new PrintWriter(sw);
92 int rc = com.sun.tools.javap.Main.run(new String[] { "-l", f.getPath() }, out);
95 out.close();
100 System.out.println(output);
106 out.println(text);
110 PrintWriter out; field in class:T4459541
/openjdk7/jdk/test/sun/rmi/log/ReliableLog/
H A DRecovery.java62 //Status status = test.run (argv, System.err, System.out);
64 test.run (argv, System.err, System.out);
67 //public Status run (String argv[], PrintStream log, PrintStream out)
68 public void run (String argv[], PrintStream lg, PrintStream out) argument
H A DSnapshotSize.java63 public void snapshot(OutputStream out, Object value) throws IOException { argument
70 out.write(buf); // leave unflushed
/openjdk7/jdk/test/sun/security/pkcs11/tls/
H A DTestKeyMaterial.java55 System.out.println("Provider does not support algorithm, skipping");
125 System.out.print(".");
158 System.out.println();
159 System.out.println("OK: " + n + " tests");
168 private static void match(int lineNumber, byte[] out, Object res, argument
170 if ((out == null) || (res == null)) {
171 if (out != res) {
183 stripParity(out);
191 if (Arrays.equals(out, b) == false) {
192 System.out
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DLOOKUPSWITCH.java86 * Dump instruction as byte code to stream out.
87 * @param out Output stream
89 public void dump(DataOutputStream out) throws IOException { argument
90 super.dump(out);
91 out.writeInt(match_length); // npairs
94 out.writeInt(match[i]); // match-offset pairs
95 out.writeInt(indices[i] = getTargetOffset(targets[i]));
H A DTABLESWITCH.java92 * Dump instruction as byte code to stream out.
93 * @param out Output stream
95 public void dump(DataOutputStream out) throws IOException { argument
96 super.dump(out);
99 out.writeInt(low);
102 out.writeInt(high);
105 out.writeInt(indices[i] = getTargetOffset(targets[i]));
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DMarkerInstruction.java91 * Dump instruction as byte code to stream out. A {@link MarkerInstruction}
94 * @param out Output stream
96 final public void dump(DataOutputStream out) throws IOException { argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDefaultErrorHandler.java61 public DefaultErrorHandler(PrintWriter out) { argument
62 fOut = out;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java59 public XPointerErrorHandler(PrintWriter out) { argument
60 fOut = out;
/openjdk7/jaxp/src/com/sun/xml/internal/stream/writers/
H A DUTF8OutputStreamWriter.java53 OutputStream out; field in class:UTF8OutputStreamWriter
62 public UTF8OutputStreamWriter(OutputStream out) { argument
63 this.out = out;
80 out.write(0xF0 | (uc >> 18));
81 out.write(0x80 | ((uc >> 12) & 0x3F));
82 out.write(0x80 | ((uc >> 6) & 0x3F));
83 out.write(0x80 | (uc & 0x3F));
92 out.write((int) c);
96 out
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DCommandHandler.java43 void printCommandHelp(PrintStream out, boolean helpType); argument
48 boolean processCommand(String[] cmd, ORB orb, PrintStream out); argument
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/logutil/
H A DIndentingPrintWriter.java42 // System.out.println( "printMsg called with msg=" + msg + " data=" + data ) ;
62 // System.out.println( "Printing result " + result + " to file" ) ;
67 public IndentingPrintWriter (Writer out) { argument
68 super( out, true ) ;
69 // System.out.println( "Constructing a new IndentingPrintWriter with Writer " + out ) ;
72 public IndentingPrintWriter(Writer out, boolean autoFlush) { argument
73 super( out, autoFlush ) ;
74 // System.out.println( "Constructing a new IndentingPrintWriter with Writer " + out ) ;
77 IndentingPrintWriter(OutputStream out) argument
82 IndentingPrintWriter(OutputStream out, boolean autoFlush) argument
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DValueHandler.java42 * @param out the stream to write the value to.
45 void writeValue(org.omg.CORBA.portable.OutputStream out, argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock.java78 public void dump(PrintStream out) { argument
79 out.print("B" + preOrder());
80 out.print(" Freq: " + freq());
81 out.println();
85 nl.at(i).dump(out);
86 out.print("\n");
/openjdk7/jdk/src/share/classes/javax/print/
H A DStreamPrintServiceFactory.java158 * @param out destination stream for generated output.
162 public abstract StreamPrintService getPrintService(OutputStream out); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLayoutFocusTraversalPolicy.java254 private void writeObject(ObjectOutputStream out) throws IOException { argument
255 out.writeObject(getComparator());
256 out.writeBoolean(getImplicitDownCycleTraversal());
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java154 * @param out The stream to write to
158 * @param len The amount to write out >= 0.
163 public abstract void write(OutputStream out, Document doc, int pos, int len) argument
196 * @param out The stream to write to
200 * @param len The amount to write out >= 0.
205 public abstract void write(Writer out, Document doc, int pos, int len) argument
/openjdk7/jdk/src/share/classes/java/io/
H A DOutputStreamWriter.java51 * Writer out
52 * = new BufferedWriter(new OutputStreamWriter(System.out));
84 * @param out
94 public OutputStreamWriter(OutputStream out, String charsetName) argument
97 super(out);
100 se = StreamEncoder.forOutputStreamWriter(out, this, charsetName);
106 * @param out An OutputStream
108 public OutputStreamWriter(OutputStream out) { argument
109 super(out);
111 se = StreamEncoder.forOutputStreamWriter(out, thi
129 OutputStreamWriter(OutputStream out, Charset cs) argument
148 OutputStreamWriter(OutputStream out, CharsetEncoder enc) argument
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRemoteObject.java174 * the <code>writeUTF</code> method is invoked on <code>out</code>
177 * this object's <code>ref</code> field passing <code>out</code>
179 * the <code>writeUTF</code> method is invoked on <code>out</code>
181 * the <code>writeObject</code> method is invoked on <code>out</code>
360 private void writeObject(java.io.ObjectOutputStream out) argument
366 String refClassName = ref.getRefClass(out);
372 out.writeUTF("");
373 out.writeObject(ref);
377 * to reference to write out its external form.
379 out
[all...]
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarOutputStream.java53 * @param out the actual output stream
57 public JarOutputStream(OutputStream out, Manifest man) throws IOException { argument
58 super(out);
70 * @param out the actual output stream
73 public JarOutputStream(OutputStream out) throws IOException { argument
74 super(out);
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DStreamHandler.java102 * @param out the target output stream
105 public StreamHandler(OutputStream out, Formatter formatter) { argument
109 setOutputStream(out);
120 * @param out New output stream. May not be null.
124 protected synchronized void setOutputStream(OutputStream out) throws SecurityException { argument
125 if (out == null) {
129 output = out;
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DDeflaterOutputStream.java65 * @param out the output stream
78 public DeflaterOutputStream(OutputStream out, argument
82 super(out);
83 if (out == null || def == null) {
99 * the 4-argument constructor DeflaterOutputStream(out, def, size, false).
101 * @param out the output stream
106 public DeflaterOutputStream(OutputStream out, Deflater def, int size) { argument
107 this(out, def, size, false);
114 * @param out the output stream
124 public DeflaterOutputStream(OutputStream out, argument
141 DeflaterOutputStream(OutputStream out, Deflater def) argument
161 DeflaterOutputStream(OutputStream out, boolean syncFlush) argument
174 DeflaterOutputStream(OutputStream out) argument
[all...]
H A DInflaterOutputStream.java73 * @param out output stream to write the uncompressed data to
74 * @throws NullPointerException if {@code out} is null
76 public InflaterOutputStream(OutputStream out) { argument
77 this(out, new Inflater());
85 * @param out output stream to write the uncompressed data to
87 * @throws NullPointerException if {@code out} or {@code infl} is null
89 public InflaterOutputStream(OutputStream out, Inflater infl) { argument
90 this(out, infl, 512);
97 * @param out output stream to write the uncompressed data to
101 * @throws NullPointerException if {@code out} o
103 InflaterOutputStream(OutputStream out, Inflater infl, int bufLen) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanFeatureInfo.java185 private void writeObject(ObjectOutputStream out) throws IOException { argument
186 out.defaultWriteObject();
191 out.write(1);
195 out.writeObject(names);
196 out.writeObject(descriptor.getFieldValues(names));
198 out.write(0);
200 out.writeObject(descriptor);

Completed in 760 milliseconds

1234567891011>>