Searched defs:ostream (Results 51 - 75 of 101) sorted by relevance

12345

/openjdk7/corba/src/share/classes/org/omg/CORBA/
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 DNameValuePairHelper.java103 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.NameValuePair value) argument
105 ostream.write_string (value.id);
106 ostream.write_any (value.value);
H A DObjectHelper.java78 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.Object value) argument
80 ostream.write_Object (value);
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 DPolicyHelper.java75 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.Policy value) argument
77 ostream.write_Object ((org.omg.CORBA.Object) value);
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]);
H A DPolicyTypeHelper.java80 public static void write (org.omg.CORBA.portable.OutputStream ostream, int value) argument
82 ostream.write_ulong (value);
H A DRepositoryIdHelper.java79 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) argument
81 ostream.write_string (value);
H A DSetOverrideTypeHelper.java74 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.SetOverrideType value) argument
76 ostream.write_long (value.value ());
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 DStructMemberHelper.java110 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.StructMember value) argument
112 ostream.write_string (value.name);
113 ostream.write_TypeCode (value.type);
114 org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
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 DUnionMemberHelper.java116 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.UnionMember value) argument
118 ostream.write_string (value.name);
119 ostream.write_any (value.label);
120 ostream.write_TypeCode (value.type);
121 org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
H A DUnknownUserExceptionHelper.java99 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.UnknownUserException value) argument
102 ostream.write_string (id ());
103 ostream.write_any (value.except);
H A DValueBaseHelper.java80 public static void write (org.omg.CORBA.portable.OutputStream ostream, java.io.Serializable value) argument
82 ((org.omg.CORBA_2_3.portable.OutputStream)ostream).write_value (value);
H A DValueMemberHelper.java138 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.ValueMember value) argument
140 ostream.write_string (value.name);
141 ostream.write_string (value.id);
142 ostream.write_string (value.defined_in);
143 ostream.write_string (value.version);
144 ostream.write_TypeCode (value.type);
145 org.omg.CORBA.IDLTypeHelper.write (ostream, value.type_def);
146 ostream.write_short (value.access);
H A DVersionSpecHelper.java78 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) argument
80 ostream.write_string (value);
H A DVisibilityHelper.java80 public static void write (org.omg.CORBA.portable.OutputStream ostream, short value) argument
82 ostream.write_short (value);
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 DWrongTransactionHelper.java92 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.WrongTransaction value) argument
95 ostream.write_string (id ());
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A DCurrentHelper.java95 public static void write (org.omg.CORBA.portable.OutputStream ostream, argument
H A DPOAHelper.java85 public static void write (org.omg.CORBA.portable.OutputStream ostream, argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DAddressingDispositionHelper.java76 public static void write (org.omg.CORBA.portable.OutputStream ostream, short value) argument
78 ostream.write_short (value);

Completed in 83 milliseconds

12345