Searched defs:out (Results 126 - 150 of 910) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DStAXExStreamWriterOutput.java40 private final XMLStreamWriterEx out; field in class:StAXExStreamWriterOutput
42 public StAXExStreamWriterOutput(XMLStreamWriterEx out) { argument
43 super(out);
44 this.out = out;
49 out.writeCharacters(" ");
53 out.writeCharacters(value.toString());
56 out.writeBinary(v.getDataHandler());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DSharedInputStream.java77 public void writeTo(long start,long end, OutputStream out); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DBEncoderStream.java48 * @param out the output stream
50 public BEncoderStream(OutputStream out) { argument
51 super(out, Integer.MAX_VALUE); // MAX_VALUE is 2^31, should
H A DOutputUtil.java40 * This class is to support writing out Strings as a sequence of bytes
44 * The expected use is to write out RFC822 style headers to an output
52 public static void writeln(String s,OutputStream out) throws IOException { argument
53 writeAsAscii(s,out);
54 writeln(out);
60 public static void writeAsAscii(String s,OutputStream out) throws IOException { argument
63 out.write((byte)s.charAt(i));
66 public static void writeln(OutputStream out) throws IOException { argument
67 out.write(newline);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelope.java49 void output(OutputStream out) throws IOException; argument
54 void output(OutputStream out, boolean isFastInfoset) throws IOException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/txw2/output/
H A DDumbEscapeHandler.java47 public void escape(char[] ch, int start, int length, boolean isAttVal, Writer out) throws IOException { argument
52 out.write("&");
55 out.write("<");
58 out.write(">");
62 out.write(""");
64 out.write('\"');
69 out.write("&#");
70 out.write(Integer.toString(ch[i]));
71 out.write(';');
73 out
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DgenSolarisConstants.c37 static void out(char* s) { function
53 out("// AUTOMATICALLY GENERATED FILE - DO NOT EDIT ");
54 out("package sun.nio.fs; ");
55 out("class SolarisConstants { ");
56 out(" private SolarisConstants() { } ");
103 out("} ");
H A DgenUnixConstants.c36 static void out(char* s) { function
52 out("// AUTOMATICALLY GENERATED FILE - DO NOT EDIT ");
53 out("package sun.nio.fs; ");
54 out("class UnixConstants { ");
55 out(" private UnixConstants() { } ");
137 out("} ");
/openjdk7/jdk/src/windows/classes/sun/security/mscapi/
H A DRSAPrivateKey.java69 private void writeObject(java.io.ObjectOutputStream out) argument
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4950122.java49 public Expression instantiate(Object oldInstance, Encoder out) { argument
50 return super.instantiate(oldInstance, out);
/openjdk7/jdk/test/java/io/Externalizable/compatibility/
H A DExternalizableBlockData.java48 public void writeExternal(ObjectOutput out) throws IOException { argument
49 out.writeInt(x);
50 out.writeInt(y);
51 out.writeObject(obj);
/openjdk7/jdk/test/java/io/Externalizable/definesWriteObject/
H A DDefinesWriteObject.java55 private void writeObject(ObjectOutputStream out) throws IOException { argument
61 public void writeExternal(ObjectOutput out) argument
64 out.writeInt(intData);
65 out.writeObject(objData);
/openjdk7/jdk/test/java/io/Serializable/badSubstByReplace/
H A DBadSubstByReplace.java42 public ReplacerObjectOutputStream(OutputStream out) throws IOException { argument
43 super(out);
60 ReplacerObjectOutputStream out = new ReplacerObjectOutputStream(baos);
61 out.writeObject(c);
62 out.close();
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DLoopback.java38 LoopbackOutputStream(OutputStream out, LinkedList descs) argument
41 super(out);
/openjdk7/jdk/test/java/io/Serializable/enum/ignoreSerializationMethods/
H A DTest.java36 private void writeObject(ObjectOutputStream out) throws IOException {
53 private void writeObject(ObjectOutputStream out) throws IOException { argument
/openjdk7/jdk/test/java/io/Serializable/enum/mismatchedTypecode/
H A DTest.java41 TestObjectOutputStream(OutputStream out) throws IOException { argument
42 super(out);
70 System.out.println("caught expected exception " + e);
82 System.out.println("caught expected exception " + e);
/openjdk7/jdk/test/java/io/Serializable/enum/unshared/
H A DTest.java36 abstract void write(ObjectOutputStream out) throws Exception; argument
53 void write(ObjectOutputStream out) throws Exception {
54 out.writeObject(Foo.foo);
55 out.writeObject(Foo.foo);
68 System.out.println("caught expected exception " + e);
73 void write(ObjectOutputStream out) throws Exception {
74 out.writeObject(Foo.foo);
75 out.writeObject(Foo.foo);
88 System.out.println("caught expected exception " + e);
93 void write(ObjectOutputStream out) throw
[all...]
/openjdk7/jdk/test/java/io/Serializable/explicitCNFException/
H A DExplicitCNFException.java44 public void writeExternal(ObjectOutput out) throws IOException {} argument
/openjdk7/jdk/test/java/io/Serializable/proxy/skipMissing/
H A DWrite.java58 private void writeObject(ObjectOutputStream out) throws IOException { argument
59 out.defaultWriteObject();
60 out.writeObject(proxy);
/openjdk7/jdk/test/java/io/Serializable/survivePrematureClose/
H A DSurvivePrematureClose.java38 public void writeExternal(ObjectOutput out) throws IOException { argument
39 out.writeInt(0);
40 out.close();
53 private void writeObject(ObjectOutputStream out) throws IOException { argument
54 out.defaultWriteObject();
55 out.close();
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DExecWithInput.java60 IO ioOut = new IO("stdout", p.getInputStream(), System.out);
84 private OutputStream out; field in class:ExecWithInput.IO
86 IO(String name, InputStream in, OutputStream out) argument
89 this.out = out;
100 out.write(buf, 0, n);
101 out.flush();
105 out.write(c);
107 out.flush();
109 out
[all...]
/openjdk7/jdk/test/java/nio/channels/Channels/
H A DBasic2.java125 private final OutputStream out; field in class:Basic2.Writer
129 Writer(OutputStream out) { argument
130 this.out = out;
157 out.write(buf);
159 out.write(buf, off, len);
165 out.close();
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DAdaptDatagramSocket.java37 static java.io.PrintStream out = System.out; field in class:AdaptDatagramSocket
53 out.println("pre op: " + toString(op) + " ip: " + toString(ip));
67 out.println("Receive timed out, as expected");
75 out.println("rtt: " + (System.currentTimeMillis() - start));
76 out.println("post op: " + toString(op) + " ip: " + toString(ip));
95 out.println();
96 out.println("dst: " + dst);
108 out
[all...]
/openjdk7/jdk/test/java/nio/channels/ServerSocketChannel/
H A DAdaptServerSocket.java37 static java.io.PrintStream out = System.out; field in class:AdaptServerSocket
49 out.println("client: " + so);
54 out.println("client interrupted");
58 out.println("client: " + so);
60 out.println("client: read " + a);
63 out.println("client: wrote " + a);
81 out.println();
85 out.println("created: " + ssc);
86 out
[all...]
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DAdaptSocket.java36 static java.io.PrintStream out = System.out; field in class:AdaptSocket
43 out.println();
50 out.println("opened: " + so);
51 out.println(" " + sc);
53 //out.println("opts: " + sc.options());
61 //out.println(" " + sc.options());
70 out.println("Connection timed out, as expected");
77 out
[all...]

Completed in 540 milliseconds

1234567891011>>