Searched refs:ostream (Results 26 - 50 of 121) sorted by relevance

12345

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DFloatSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, float[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_float_array (value, 0, value.length);
H A DLongLongSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, long[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_longlong_array (value, 0, value.length);
H A DLongSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, int[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_long_array (value, 0, value.length);
H A DOctetSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, byte[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_octet_array (value, 0, value.length);
H A DShortSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, short[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_short_array (value, 0, value.length);
H A DULongLongSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, long[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_ulonglong_array (value, 0, value.length);
H A DULongSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, int[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_ulong_array (value, 0, value.length);
H A DUShortSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, short[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_ushort_array (value, 0, value.length);
H A DWCharSeqHelper.java93 public static void write (org.omg.CORBA.portable.OutputStream ostream, char[] value) argument
95 ostream.write_long (value.length);
96 ostream.write_wchar_array (value, 0, value.length);
H A DStringValueHelper.java118 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) argument
120 if (!(ostream instanceof org.omg.CORBA_2_3.portable.OutputStream)) {
122 ((org.omg.CORBA_2_3.portable.OutputStream) ostream).write_value (value, _instance);
125 public void write_value (org.omg.CORBA.portable.OutputStream ostream, java.io.Serializable value) argument
130 ostream.write_string (valueType);
H A DWStringValueHelper.java122 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) argument
124 if (!(ostream instanceof org.omg.CORBA_2_3.portable.OutputStream)) {
126 ((org.omg.CORBA_2_3.portable.OutputStream) ostream).write_value (value, _instance);
129 public void write_value (org.omg.CORBA.portable.OutputStream ostream, java.io.Serializable value) argument
134 ostream.write_wstring (valueType);
H A DAnySeqHelper.java94 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.Any[] value) argument
96 ostream.write_long (value.length);
98 ostream.write_any (value[_i0]);
H A DPolicyListHelper.java82 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.Policy[] value) argument
84 ostream.write_long (value.length);
86 org.omg.CORBA.PolicyHelper.write (ostream, value[_i0]);
/openjdk7/jdk/test/java/util/Hashtable/
H A DReadObject.java78 ByteArrayOutputStream ostream = new ByteArrayOutputStream();
79 ObjectOutputStream p = new ObjectOutputStream(ostream);
84 byte[] byteArray = ostream.toByteArray();
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DReplyMessage_1_0.java166 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
167 super.write(ostream);
170 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
174 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
176 ostream.write_ulong(this.request_id);
177 ostream.write_long(this.reply_status);
H A DReplyMessage_1_1.java166 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
167 super.write(ostream);
170 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
174 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
176 ostream.write_ulong(this.request_id);
177 ostream.write_long(this.reply_status);
H A DLocateReplyMessage_1_0.java114 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
115 super.write(ostream);
116 ostream.write_ulong(this.request_id);
117 ostream.write_long(this.locate_status);
H A DLocateReplyMessage_1_1.java114 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
115 super.write(ostream);
116 ostream.write_ulong(this.request_id);
117 ostream.write_long(this.reply_status);
H A DAddressingDispositionHelper.java76 public static void write (org.omg.CORBA.portable.OutputStream ostream, short value) argument
78 ostream.write_short (value);
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DBinaryTree.java41 FileOutputStream ostream = new FileOutputStream("piotest3.tmp");
43 ObjectOutputStream p = new ObjectOutputStream(ostream);
48 ostream.close();
H A DCheckForException.java47 FileOutputStream ostream = new FileOutputStream("psiotest3.tmp");
48 ObjectOutputStream p = new ObjectOutputStream(ostream);
72 ostream.close();
H A DValidateClass.java39 FileOutputStream ostream = new FileOutputStream("psiotest4.tmp");
40 ObjectOutputStream p = new ObjectOutputStream(ostream);
59 ostream.close();
H A DAnnotateClass.java39 FileOutputStream ostream = new FileOutputStream("subtest1.tmp");
41 TestOutputStream p = new TestOutputStream(ostream);
44 p.writeObject(new PrintStream(ostream));
47 ostream.close();
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/ValueDefPackage/
H A DFullValueDescriptionHelper.java201 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.CORBA.ValueDefPackage.FullValueDescription value) argument
203 ostream.write_string (value.name);
204 ostream.write_string (value.id);
205 ostream.write_boolean (value.is_abstract);
206 ostream.write_boolean (value.is_custom);
207 ostream.write_string (value.defined_in);
208 ostream.write_string (value.version);
209 com.sun.org.omg.CORBA.OpDescriptionSeqHelper.write (ostream, value.operations);
210 com.sun.org.omg.CORBA.AttrDescriptionSeqHelper.write (ostream, value.attributes);
211 com.sun.org.omg.CORBA.ValueMemberSeqHelper.write (ostream, valu
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImplHelper.java73 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.Any value) argument
75 ostream.write_any (value);

Completed in 2528 milliseconds

12345