Searched refs:oStream (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DWebRowSet.java461 * @param oStream the <code>java.io.OutputStream</code> to write to
465 public void writeXml(ResultSet rs, java.io.OutputStream oStream) throws SQLException, IOException; argument
481 * @param oStream the <code>java.io.OutputStream</code> stream to write to
485 public void writeXml(java.io.OutputStream oStream) throws SQLException, IOException; argument
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DWebRowSetImpl.java242 public void writeXml(java.io.OutputStream oStream) throws SQLException, IOException { argument
248 xmlWriter.writeXML(this, oStream);
264 public void writeXml(ResultSet rs, java.io.OutputStream oStream) throws SQLException, IOException { argument
270 this.writeXml(oStream);
H A DJoinRowSetImpl.java4133 public void writeXml(java.io.OutputStream oStream) throws SQLException, IOException { argument
4134 createWebRowSet().writeXml(oStream);
4145 public void writeXml(ResultSet rs, java.io.OutputStream oStream) throws SQLException, IOException { argument
4148 wrs.writeXml(oStream);
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DMethodGen.java999 private void writeOutputStreamWrite (String indent, String oStream, String name, SymtabEntry type, PrintWriter stream) argument
1006 stream.println (oStream + ".write_longlong (" + name +");");
1008 stream.println (oStream + ".write_ushort (" + name + ");");
1010 stream.println (oStream + ".write_ulong (" + name + ");");
1012 stream.println (oStream + ".write_ulonglong (" + name + ");");
1014 stream.println (oStream + ".write_" + typeName + " (" + name + ");");
1017 stream.println (oStream + ".write_" + typeName + " (" + name + ");");
1019 stream.println (oStream + ".write_" + type.type().name() + " (" + name + ");");
1028 stream.println (Util.helperName (type, true) + ".write (" + oStream + ", " // <d61056>
1031 stream.println (Util.helperName (type, true) + ".write (" + oStream
[all...]
/openjdk7/jdk/test/java/util/Currency/
H A DCurrencyTest.java224 ObjectOutputStream oStream = new ObjectOutputStream(baos);
225 oStream.writeObject(currency1);
226 oStream.flush();
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DWebRowSetXmlWriter.java119 * @param oStream the <code>java.io.OutputStream</code> object to which
126 public void writeXML(WebRowSet caller, java.io.OutputStream oStream) argument
131 writer = new OutputStreamWriter(oStream);

Completed in 50 milliseconds