Searched defs:out (Results 376 - 400 of 910) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/xml/
H A DXMLCodec.java66 public ContentType encode(Packet packet, OutputStream out) { argument
67 XMLStreamWriter writer = XMLStreamWriterFactory.create(out);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFieldWriter.java242 * @param out where the content of this field must be put.
244 void put(final ByteVector out) { argument
245 out.putShort(access).putShort(name).putShort(desc);
270 out.putShort(attributeCount);
272 out.putShort(cw.newUTF8("ConstantValue"));
273 out.putInt(2).putShort(value);
278 out.putShort(cw.newUTF8("Synthetic")).putInt(0);
281 out.putShort(cw.newUTF8("Deprecated")).putInt(0);
284 out.putShort(cw.newUTF8("Signature"));
285 out
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/exception/
H A DJAXWSExceptionBase.java93 private void writeObject(ObjectOutputStream out) throws IOException { argument
95 out.defaultWriteObject();
97 out.writeObject(msg.getResourceBundleName());
98 out.writeObject(msg.getKey());
101 out.writeInt(-1);
104 out.writeInt(args.length);
108 out.writeObject(args[i]);
110 out.writeObject(args[i].toString());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DDumpTube.java51 private final PrintStream out; field in class:DumpTube
61 * {@link DumpTube}s print messages out.
62 * @param out
67 public DumpTube(String name, PrintStream out, Tube next) { argument
70 this.out = out;
81 this.out = that.out;
98 out.println("====["+name+":"+header+"]====");
100 out
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/xml/
H A DXMLStreamReaderToXMLStreamWriter.java49 protected XMLStreamWriter out; field in class:XMLStreamReaderToXMLStreamWriter
54 * Reads one subtree and writes it out.
60 public void bridge(XMLStreamReader in, XMLStreamWriter out) throws XMLStreamException { argument
61 assert in!=null && out!=null;
63 this.out = out;
130 out.writeProcessingInstruction(
139 out.writeCharacters(buf, 0, read);
144 out.writeEndElement();
150 out
[all...]
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestShortBuffer.java56 private byte[] out = null; field in class:TestShortBuffer
66 this.out = new byte[expected.length];
73 System.out.println("===== TESTING MODE " + MODES[i] + " =====");
85 System.out.println("Testing with Cipher.ENCRYPT_MODE");
93 System.out.println("Testing with Cipher.DECRYPT_MODE");
109 if (!Arrays.equals(out, expected)) {
110 System.out.println("got: " + new BigInteger(out));
111 System.out.println("expect: " + new BigInteger(expected));
122 System.out
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest5023550.java102 protected Expression instantiate(Object old, Encoder out) { argument
103 XMLEncoder encoder = (XMLEncoder) out;
110 protected Expression instantiate(Object old, Encoder out) { argument
111 XMLEncoder encoder = (XMLEncoder) out;
117 protected Expression instantiate(Object old, Encoder out) { argument
/openjdk7/jdk/test/java/io/File/
H A DBasic.java40 static PrintStream out = System.err; field in class:Basic
51 out.println(" " + what + ": " + value);
55 out.println(" " + what + ": " + value);
59 out.println(f + ": ");
108 out.print(" [" + fs.length + "]");
110 out.print(" " + fs[i]);
111 out.println();
H A DSymLinks.java35 final static PrintStream out = System.out; field in class:SymLinks
149 out.println();
150 out.println();
151 out.println("-- " + h + " --");
/openjdk7/jdk/test/java/io/Serializable/InvalidClassException/noargctor/
H A DDefaultPackage.java87 public void writeExternal(ObjectOutput out) throws IOException { argument
98 public void writeExternal(ObjectOutput out) throws IOException { argument
109 public void writeExternal(ObjectOutput out) throws IOException { argument
122 public void writeExternal(ObjectOutput out) throws IOException { argument
136 ObjectOutputStream out = new ObjectOutputStream(baos);
137 out.writeObject(new DefaultPublicSerializable());
138 out.writeObject(new DefaultProtectedSerializable());
139 out.writeObject(new DefaultAccessSerializable());
140 out.writeObject(new DefaultPrivateSerializable());
155 out
[all...]
/openjdk7/jdk/test/java/io/Serializable/InvalidClassException/noargctor/Serialize/
H A DSubclassAcrossPackage.java103 public void writeExternal(ObjectOutput out) throws IOException { argument
114 public void writeExternal(ObjectOutput out) throws IOException { argument
125 public void writeExternal(ObjectOutput out) throws IOException { argument
138 public void writeExternal(ObjectOutput out) throws IOException { argument
152 ObjectOutputStream out = new ObjectOutputStream(baos);
153 out.writeObject(new PublicSerializable());
154 out.writeObject(new ProtectedSerializable());
155 out.writeObject(new SamePackageSerializable());
156 out.writeObject(new SamePackageProtectedSerializable());
157 out
[all...]
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DExternLoopback.java37 LoopbackOutputStream(OutputStream out, LinkedList descs) argument
40 super(out);
79 public void writeExternal(ObjectOutput out) throws IOException { argument
80 out.writeBoolean(false);
81 out.writeObject(a);
82 out.writeObject(b);
83 out.writeObject(c);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectOutputStream.java101 * Serialization does not write out the fields of any object that does
139 protected OutputStream out; field in class:AbstractObjectOutputStream
155 public AbstractObjectOutputStream(OutputStream out) throws IOException { argument
156 this.out = out;
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java40 OutputStream out; field in class:StreamsSurviveDestroy.Copier
46 Copier(String name, InputStream in, OutputStream out, argument
51 this.out = out;
73 out.write(buf, 0, n);
106 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
126 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
147 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
169 Copier cp1 = new Copier("out", p.getInputStream(), System.err,
H A DWinCommand.java51 public final String out; field in class:CommandRunner
65 this.out = d1.toString();
85 return cr.out.replaceFirst("[\r\n]+$", "");
96 out.printf("%s CD ==> %s%n", filespec, CD);
133 out.printf("systemDirW=%s%n", systemDirW);
134 out.printf("systemDirM=%s%n", systemDirM);
138 out.println("Running cmd.exe tests...");
161 // out.println("Running command.com tests...");
170 // out.println("Running COMMAND.COM tests...");
/openjdk7/jdk/test/java/net/Socket/
H A DDeadlockTest.java71 ObjectOutputStream out; field in class:ServerThread
82 Message.write(out, new PingMessage(cnt));
95 out = new ObjectOutputStream(sock.getOutputStream());
96 out.flush();
98 if (dbg) System.out.println("*** ping0 ***");
100 if (dbg) System.out.println("*** ping1 ***");
102 if (dbg) System.out.println("*** ping2 ***");
104 if (dbg) System.out.println("*** ping3 ***");
106 if (dbg) System.out.println("*** ping4 ***");
108 if (dbg) System.out
143 ObjectOutputStream out; field in class:ClientThread
207 write(ObjectOutput out, Message msg) argument
[all...]
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java61 ObjectOutputStream out =
64 out.writeObject(act);
130 public String getRefClass(java.io.ObjectOutput out) { argument
142 public void writeExternal(ObjectOutput out) { argument
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/
H A DTestThread.java51 protected PrintStream out = System.out; field in class:TestThread
95 public void setOutput (PrintStream out) argument
96 { this.out = out; }
H A DTraffic.java30 private OutputStream out; field in class:Traffic
42 Traffic (InputStream in, OutputStream out) argument
45 this.out = out;
73 // System.out.println ("Initiating N = " + n);
78 System.out.println ("** ERROR: initiate forever ??");
122 out.write (buf);
125 System.out.println (Thread.currentThread ().getName ()
146 System.out.println (Thread.currentThread ().getName ()
214 // System.out
[all...]
/openjdk7/jdk/test/sun/text/resources/
H A DLocaleDataTest.java103 * this program prints out only the differences between the data file and the actual
104 * resource data. If -w is specified, the program prints out every entry, comment,
151 // command-line arguments (exceptions generated here will propagate out
154 PrintWriter out = null;
179 out = new PrintWriter(new EscapeWriter(new OutputStreamWriter(System.out,
183 int errorCount = doTest(in, out, writeNewFile);
185 // write out the error count, and throw an exception out into the environment
189 out
200 doTest(BufferedReader in, PrintWriter out, boolean writeNewFile) argument
234 processLine(String key, String expectedValue, PrintWriter out, boolean writeNewFile) argument
416 EscapeWriter(Writer out) argument
[all...]
/openjdk7/jdk/test/tools/jar/
H A DUpdateManifest.java38 static PrintStream out = System.out; field in class:UpdateManifest
45 File tmp = File.createTempFile("system-out-err", ".txt");
47 out = new PrintStream(new FileOutputStream(tmp));
48 err = out;
64 Main jartool = new Main(out, err, "jar");
71 jartool = new Main(out, err, "jar");
101 Main jartool = new Main(out, err, "jar");
122 jartool = new Main(out, err, "jar");
195 System.out
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/
H A DServer.java49 private final OutputStream out; field in class:Server
80 private Server(BufferedReader in, OutputStream out, boolean isSocket) { argument
82 this.out = out;
85 private Server(BufferedReader in, OutputStream out) { argument
86 this(in, out, false);
130 res = compile(out, fm, args);
131 // FIXME res = tool.run((InputStream)null, null, out, args.toArray(new String[args.size()]));
135 PrintWriter p = new PrintWriter(out, true);
144 // res = compile(args.toArray(new String[args.size()]), out);
191 compile(OutputStream out, StandardJavaFileManager fm, List<String> args) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DJavahTool.java50 public NativeHeaderTask getTask(Writer out, argument
55 return new JavahTask(out, fileManager, diagnosticListener, options, classes);
62 public int run(InputStream in, OutputStream out, OutputStream err, String... arguments) { argument
64 JavahTask.getPrintWriterForStream(out),
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinffast.c57 Decode literal, length, and distance codes and write out the resulting
74 LEN -- ran out of enough output space or enough available input
98 unsigned char FAR *out; /* local strm->next_out */ local
100 unsigned char FAR *end; /* while out < end, enough space available */
125 out = strm->next_out - OFF;
126 beg = out - (start - strm->avail_out);
127 end = out + (strm->avail_out - 257);
161 PUP(out) = (unsigned char)(this.val);
210 op = (unsigned)(out - beg); /* max distance in output */
224 PUP(out)
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/
H A DGSSHeader.java281 * @param out the outputstream to write the length to
286 private int putLength(int len, OutputStream out) throws IOException { argument
289 out.write((byte)len);
293 out.write((byte)0x081);
294 out.write((byte)len);
298 out.write((byte)0x082);
299 out.write((byte)(len >> 8));
300 out.write((byte)len);
304 out.write((byte)0x083);
305 out
[all...]

Completed in 89 milliseconds

<<11121314151617181920>>