Searched refs:ostream (Results 1 - 25 of 144) sorted by relevance

123456

/openjdk9/jdk/test/javax/imageio/stream/
H A DFlushBefore.java42 OutputStream ostream = new ByteArrayOutputStream();
45 new FileCacheImageOutputStream(ostream, null);
49 new MemoryCacheImageOutputStream(ostream);
H A DBitPadding.java40 OutputStream ostream = new ByteArrayOutputStream();
43 new FileCacheImageOutputStream(ostream, f);
/openjdk9/jdk/test/java/text/Format/NumberFormat/
H A DDFSSerialization142.java45 FileOutputStream ostream = new FileOutputStream("DecimalFormatSymbols.142");
46 ObjectOutputStream p = new ObjectOutputStream(ostream);
48 ostream.close();
/openjdk9/test/fmw/gtest/include/gtest/
H A Dgtest-printers.h45 // 1. foo::PrintTo(const T&, ostream*)
46 // 2. operator<<(ostream&, const T&) defined in either foo or the
69 // void ::testing::internal::UniversalTersePrint(const T& value, ostream*);
74 // void ::testing::internal::UniversalPrint(const T& value, ostream*);
98 #include <ostream> // NOLINT
113 // ostream.
116 ::std::ostream* os);
135 static void PrintValue(const T& value, ::std::ostream* os) {
149 static void PrintValue(const T& value, ::std::ostream* os) {
168 static void PrintValue(const T& value, ::std::ostream* o
[all...]
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DStreamable.java46 * Marshals to <code>ostream</code> the value in the
49 * @param ostream the CDR OutputStream
51 void _write(OutputStream ostream); argument
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DRequestMessage_1_0.java133 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
134 super.write(ostream);
137 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
141 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
143 ostream.write_ulong(this.request_id);
144 ostream.write_boolean(this.response_expected);
146 ostream.write_long(this.object_key.length);
147 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
148 ostream.write_string(this.operation);
150 ostream
[all...]
H A DLocateRequestMessage_1_1.java89 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
90 super.write(ostream);
91 ostream.write_ulong(this.request_id);
93 ostream.write_long(this.object_key.length);
94 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
H A DLocateRequestMessage_1_0.java87 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
88 super.write(ostream);
89 ostream.write_ulong(this.request_id);
91 ostream.write_long(this.object_key.length);
92 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
H A DCancelRequestMessage_1_2.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DRequestMessage_1_1.java139 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
140 super.write(ostream);
143 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
147 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
149 ostream.write_ulong(this.request_id);
150 ostream.write_boolean(this.response_expected);
157 ostream.write_octet(this.reserved[_i0]);
160 ostream.write_long(this.object_key.length);
161 ostream.write_octet_array(this.object_key, 0, this.object_key.length);
162 ostream
[all...]
H A DCancelRequestMessage_1_1.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DCancelRequestMessage_1_0.java66 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
67 super.write(ostream);
68 ostream.write_ulong(this.request_id);
H A DFragmentMessage_1_1.java70 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
71 super.write(ostream);
H A DLocateRequestMessage_1_2.java86 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
87 super.write(ostream);
88 ostream.write_ulong (this.request_id);
90 TargetAddressHelper.write(ostream, this.target);
H A DRequestMessage_1_2.java163 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
164 super.write(ostream);
165 ostream.write_ulong(this.request_id);
166 ostream.write_octet(this.response_flags);
173 ostream.write_octet(this.reserved[_i0]);
176 TargetAddressHelper.write(ostream, this.target);
177 ostream.write_string(this.operation);
180 (org.omg.CORBA_2_3.portable.OutputStream) ostream,
184 (org.omg.CORBA_2_3.portable.OutputStream) ostream);
192 ((CDROutputStream)ostream)
[all...]
H A DMessage_1_1.java188 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
189 ostream.write_long(this.magic);
191 this.GIOP_version.write(ostream);
192 ostream.write_octet(this.flags);
193 ostream.write_octet(this.message_type);
194 ostream.write_ulong(this.message_size);
H A DMessage_1_0.java134 public void write(org.omg.CORBA.portable.OutputStream ostream) { argument
135 ostream.write_long(this.magic);
137 this.GIOP_version.write(ostream);
138 ostream.write_boolean(this.byte_order);
139 ostream.write_octet(this.message_type);
140 ostream.write_ulong(this.message_size);
/openjdk9/test/fmw/gtest/src/
H A Dgtest-printers.cc41 // type Foo by defining either operator<<(::std::ostream&, const Foo&)
42 // or void PrintTo(const Foo&, ::std::ostream*) in the namespace that
48 #include <ostream> // NOLINT
56 using ::std::ostream;
60 size_t count, ostream* os) {
77 // Prints the bytes in the given value to the given ostream.
79 ostream* os) {
111 ostream* os) {
142 static CharFormat PrintAsCharLiteralTo(Char c, ostream* os) {
188 static CharFormat PrintAsStringLiteralTo(wchar_t c, ostream* o
[all...]
/openjdk9/jdk/test/java/io/Serializable/oldTests/
H A DCircularList.java40 FileOutputStream ostream = null;
42 ostream = new FileOutputStream("piotest7.tmp");
43 ObjectOutputStream p = new ObjectOutputStream(ostream);
65 if (ostream != null) ostream.close();
H A DArrayFields.java43 FileOutputStream ostream = null;
46 ostream = new FileOutputStream("piotest4.tmp");
47 ObjectOutputStream p = new ObjectOutputStream(ostream);
80 if (ostream != null) ostream.close();
/openjdk9/jdk/test/java/awt/datatransfer/DataFlavor/
H A DExternalizeTest.java56 FileOutputStream ostream = new FileOutputStream("t.tmp");
57 ObjectOutputStream p = new ObjectOutputStream(ostream);
59 ostream.close();
/openjdk9/jdk/test/javax/imageio/
H A DImageStreamFromRAF.java49 ImageOutputStream ostream = ImageIO.createImageOutputStream(raf);
54 if (ostream == null) {
60 if (!(ostream instanceof FileImageOutputStream)) {
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeImplHelper.java71 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.TypeCode value) argument
73 ostream.write_TypeCode (value);
76 public static void write (org.omg.CORBA.portable.OutputStream ostream, TypeCodeImpl value) argument
78 ostream.write_TypeCode (value);
/openjdk9/jdk/test/java/util/TimeZone/
H A Dbug4096952.java46 try (ObjectOutputStream ostream = new ObjectOutputStream(baos)) {
47 ostream.writeObject(zone);
/openjdk9/jdk/src/java.base/share/classes/sun/launcher/
H A DLauncherHelper.java129 private static PrintStream ostream; field in class:LauncherHelper
187 ostream.println(VM_SETTINGS);
189 ostream.println(INDENT + "Stack Size: " +
193 ostream.println(INDENT + "Min. Heap Size: " +
197 ostream.println(INDENT + "Max. Heap Size: " +
200 ostream.println(INDENT + "Max. Heap Size (Estimated): "
203 ostream.println(INDENT + "Using VM: "
205 ostream.println();
213 ostream.println(PROP_SETTINGS);
220 ostream
[all...]

Completed in 305 milliseconds

123456