Searched defs:out (Results 251 - 275 of 910) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/test/java/io/Serializable/noSuchFieldClarification/
H A DNoSuchFieldClarification.java62 private void writeObject(ObjectOutputStream out) throws IOException { argument
63 ObjectOutputStream.PutField fields = out.putFields();
66 out.writeFields();
/openjdk7/jdk/test/java/io/Serializable/oldTests/
H A DAnnotateClass.java42 p.writeObject(System.out);
54 PrintStream out = (PrintStream)q.readObject();
57 if (out != System.out) {
59 "\nTEST FAILED: System.out not read correctly");
97 TestOutputStream(OutputStream out) throws IOException { argument
98 super(out);
175 if (s == System.out) {
184 return System.out;
/openjdk7/jdk/test/java/io/Serializable/replaceStringArray/
H A DReplaceStringArray.java48 System.out.println("stringA = " + stringA);
49 System.out.println("stringB = " + stringB);
50 System.out.println("stringC = " + stringC);
51 System.out.println("length of arrayOfString = " +
54 System.out.println("arrayOfString[" + i + "]= " +
63 public SubstituteObjectOutputStream(OutputStream out) throws IOException { argument
64 super(out);
135 System.out.println("Value of Class A");
137 System.out.println("");
143 System.out
[all...]
/openjdk7/jdk/test/java/io/Serializable/skipToEndOfBlockData/
H A DSkipToEndOfBlockData.java43 private void writeObject(ObjectOutputStream out) throws IOException { argument
44 out.writeInt(i);
45 out.writeFloat(f);
46 out.writeUTF("skip me");
77 public void writeExternal(ObjectOutput out) throws IOException { argument
78 out.writeInt(i);
79 out.writeFloat(f);
80 out.writeUTF("skip another");
/openjdk7/jdk/test/java/io/Serializable/typeSafeEnum/
H A DTypeSafeEnum.java53 System.out.println("TypeSafeEnum.writeReplace() " +
62 System.out.println("readResolve called on " + this.toString());
82 System.out.println("TypeSafeEnum.readObject() " + this.toString());
109 private void writeObject(ObjectOutputStream out) throws IOException argument
112 out.defaultWriteObject();
114 System.out.println("TypeSafeEnum.writeObject() " +
/openjdk7/jdk/test/java/net/URLConnection/
H A DResendPostBody.java52 OutputStream out; field in class:ResendPostBody.Server
91 out = sock.getOutputStream ();
108 out.write (response.toString().getBytes());
112 out.close();
127 System.out.println ("Press return when ready");
129 System.out.println ("Done");
134 System.out.println ("IOException");
/openjdk7/jdk/test/java/nio/Buffer/
H A DBasic.java42 static PrintStream out = System.err; field in class:Basic
59 out.print(" ");
60 out.println(toString(b) + " " + Integer.toHexString(b.hashCode()));
84 out.print(" " + Integer.toHexString(bb.get(i) & 0xff));
85 out.println();
91 out.print(" " + Integer.toHexString(bb.get(i) & 0xffff));
92 out.println();
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DVectorParams.java37 static java.io.PrintStream out = System.out; field in class:VectorParams
/openjdk7/jdk/test/sun/security/util/Oid/
H A DS11N.java69 System.out.println("version is " + version);
73 check(out(oid), oid);
79 check(out(oid), oid);
84 check(out(oid), oid);
95 System.out.println(e);
124 private static byte[] out(String oid) throws Exception { method in class:S11N
142 String[] base64 = encoder.encodeBuffer(out(oid)).split("\n");
143 System.out.println(" " + title + ".put(\"" + oid + "\",");
145 System.out.print(" \"" + base64[i] + "\"");
147 System.out
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javah/
H A DNativeHeaderTool.java62 * @param out a Writer for additional output from the task;
80 NativeHeaderTask getTask(Writer out, argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DDisassemblerTool.java62 * @param out a Writer for additional output from the compiler;
83 DisassemblerTask getTask(Writer out, argument
/openjdk7/langtools/src/share/classes/javax/tools/
H A DJavaCompiler.java141 * System.out.format("Error on line %d in %s%n",
237 * @param out a Writer for additional output from the compiler;
258 CompilationTask getTask(Writer out, argument
/openjdk7/jdk/src/share/native/sun/awt/utility/
H A Drect.c44 RECT_T * out = outBuf; local
46 RECT_T *pPrevLine = NULL, *pFirst = out, *pThis = pFirst;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DCanonShaping.cpp88 le_int32 out = 0, dir = 1; local
91 out = charCount - 1;
95 for (i = 0; i < charCount; i += 1, out += dir) {
99 glyphStorage.setCharIndex(out, index, success);
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD2.java79 void implDigest(byte[] out, int ofs) { argument
87 out[ofs + i] = (byte)X[i];
H A DSHA.java94 void implDigest(byte[] out, int ofs) { argument
105 i2bBig(state, 0, out, ofs, 20);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAccessDescription.java76 public void encode(DerOutputStream out) throws IOException { argument
80 out.write(DerValue.tag_Sequence, tmp);
H A DCertificateAlgorithmId.java105 * @param out the DerOutputStream to marshal the contents to.
108 public void encode(OutputStream out) throws IOException { argument
112 out.write(tmp.toByteArray());
H A DCertificateIssuerUniqueIdentity.java111 * @param out the DerOutputStream to marshal the contents to.
114 public void encode(OutputStream out) throws IOException { argument
118 out.write(tmp.toByteArray());
H A DCertificateSubjectUniqueIdentity.java110 * @param out the DerOutputStream to marshal the contents to.
113 public void encode(OutputStream out) throws IOException { argument
117 out.write(tmp.toByteArray());
H A DCertificateX509Key.java100 * @param out the OutputStream to marshal the contents to.
103 public void encode(OutputStream out) throws IOException { argument
107 out.write(tmp.toByteArray());
H A DDNSName.java122 * @param out the DER stream to encode the DNSName to.
125 public void encode(DerOutputStream out) throws IOException { argument
126 out.putIA5String(name);
H A DDistributionPointName.java167 * @param out the output stream.
170 public void encode(DerOutputStream out) throws IOException { argument
176 out.writeImplicit(
182 out.writeImplicit(
H A DGeneralNames.java111 * @param out the DerOutputStream to write the extension to.
114 public void encode(DerOutputStream out) throws IOException { argument
123 out.write(DerValue.tag_Sequence, temp);
H A DOIDName.java88 * @param out the DER stream to encode the OIDName to.
91 public void encode(DerOutputStream out) throws IOException { argument
92 out.putOID(oid);

Completed in 150 milliseconds

<<11121314151617181920>>