Searched refs:write (Results 201 - 225 of 1678) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJBinaryFile.java18 * 2 along with this work; if not, write to the Free Software Foundation,
60 os.write( baos.toByteArray() );
/openjdk7/jdk/test/java/beans/Introspector/
H A DTest4918902.java16 * 2 along with this work; if not, write to the Free Software Foundation,
49 private static void testPropertyDescriptor(Class type, Class read, Class write) { argument
54 if (!write.equals(pd.getWriteMethod().getDeclaringClass())) {
55 throw new Error("unexpected write method: " + pd.getWriteMethod());
59 private static void testIndexedPropertyDescriptor(Class type, Class read, Class write) { argument
64 if (!write.equals(ipd.getIndexedWriteMethod().getDeclaringClass())) {
65 throw new Error("unexpected write method: " + ipd.getIndexedWriteMethod());
/openjdk7/jdk/test/java/io/FileOutputStream/
H A DFileOpenNeg.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 fs.write(1);
/openjdk7/jdk/test/java/io/charStreams/
H A DCat.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 out.write(c);
/openjdk7/jdk/test/sun/net/
H A DTelnetTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
38 out.write("Hello world!\r\nGoodbye World\r ".getBytes());
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
63 write(emptyData);
/openjdk7/langtools/test/tools/javac/
H A DT6665791.java16 * 2 along with this work; if not, write to the Free Software Foundation,
47 write(test_java, test);
60 sw.write(arg0.toString());
76 static void write(File file, String body) throws IOException { method in class:T6665791
78 out.write(body);
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestLastRound.java16 * 2 along with this work; if not, write to the Free Software Foundation,
48 out.write("class LastRound { }");
/openjdk7/langtools/test/tools/javac/processing/werror/
H A DWErrorGen.java16 * 2 along with this work; if not, write to the Free Software Foundation,
49 out.write("import java.util.*; class Gen { List l; }");
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/output/
H A DWriterOutputBuffer.java70 _writer.write(s);
80 _writer.write(s, from, to);
90 _writer.write(ch);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DTypeCodeImplHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 write (out, that);
71 public static void write (org.omg.CORBA.portable.OutputStream ostream, org.omg.CORBA.TypeCode value) method in class:TypeCodeImplHelper
76 public static void write (org.omg.CORBA.portable.OutputStream ostream, TypeCodeImpl value) method in class:TypeCodeImplHelper
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DLocateRequestMessage_1_2.java18 * 2 along with this work; if not, write to the Free Software Foundation,
86 public void write(org.omg.CORBA.portable.OutputStream ostream) { method in class:LocateRequestMessage_1_2
87 super.write(ostream);
90 TargetAddressHelper.write(ostream, this.target);
H A DMessage_1_2.java18 * 2 along with this work; if not, write to the Free Software Foundation,
70 public void write(org.omg.CORBA.portable.OutputStream ostream) { method in class:Message_1_2
72 super.write(ostream);
78 super.write(ostream);
/openjdk7/jdk/src/share/classes/java/io/
H A DByteArrayOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
121 public synchronized void write(int b) { method in class:ByteArrayOutputStream
133 * @param len the number of bytes to write.
135 public synchronized void write(byte b[], int off, int len) { method in class:ByteArrayOutputStream
148 * stream's write method using <code>out.write(buf, 0, count)</code>.
150 * @param out the output stream to which to write the data.
154 out.write(buf, 0, count);
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DImageOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
43 * write are necessarily different from the semantics for dealing with
47 * as 0s. The byte-aligned write then starts at the next byte position.
61 * write. Implementers can use the
71 void write(int b) throws IOException; method in interface:ImageOutputStream
82 * write.
90 void write(byte b[]) throws IOException; method in interface:ImageOutputStream
101 * write. Implementers can use the
108 * @param len the number of <code>byte</code>s to write.
117 void write(byt method in interface:ImageOutputStream
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncByteArrayOutputStream.java46 public void write(byte[] arg0) { method in class:UnsyncByteArrayOutputStream
55 public void write(byte[] arg0, int arg1, int arg2) { method in class:UnsyncByteArrayOutputStream
64 public void write(int arg0) { method in class:UnsyncByteArrayOutputStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DTeeInputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
51 copySink.write(result);
73 copySink.write(b, off, len);
79 copySink.write(b);
/openjdk7/jdk/test/java/io/Serializable/nullArgExceptionOrder/
H A DTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
44 oout.write(null, badBounds[i][0], badBounds[i][1]);
51 oout.write(b, badBounds[i][0], badBounds[i][1]);
56 oout.write(b);
/openjdk7/jdk/test/java/io/Serializable/subclass/
H A DAbstractObjectOutputStream.java16 * 2 along with this work; if not, write to the Free Software Foundation,
65 * The method <STRONG>writeObjectOverride</STRONG> is used to write an object
101 * Serialization does not write out the fields of any object that does
121 * objects state. When implemented by a class they can write and read
179 * object to be written, write Externalizable objects with its classes
239 abstract public void write(int data) throws IOException; method in class:AbstractObjectOutputStream
240 abstract public void write(byte b[]) throws IOException; method in class:AbstractObjectOutputStream
241 abstract public void write(byte b[], int off, int len) throws IOException; method in class:AbstractObjectOutputStream
/openjdk7/jdk/test/java/nio/charset/coders/
H A DSurrogates.java16 * 2 along with this work; if not, write to the Free Software Foundation,
52 osw.write(input);
65 osw.write(input, i, Math.min(input.length - i, 7));
67 osw.write(input, 0, 1);
/openjdk7/jdk/src/share/classes/sun/security/jgss/spnego/
H A DSpNegoToken.java18 * 2 along with this work; if not, write to the Free Software Foundation,
104 token.write(encode());
111 initToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
118 targToken.write(DerValue.createTag(DerValue.TAG_CONTEXT,
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DLastReqEntry.java17 * 2 along with this work; if not, write to the Free Software Foundation,
83 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x00), temp);
84 bytes.write(DerValue.createTag(DerValue.TAG_CONTEXT, true, (byte)0x01), lrValue.asn1Encode());
86 temp.write(DerValue.tag_Sequence, bytes);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabOutputStream.java17 * 2 along with this work; if not, write to the Free Software Foundation,
78 write(realm);
82 write(serviceNames[i].getBytes("8859_1"));
94 write(entry.keyblock);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DUniqueIdentity.java18 * 2 along with this work; if not, write to the Free Software Foundation,
101 out.write(tag);
104 out.write(excessBits);
105 out.write(bytes);
/openjdk7/jdk/test/java/util/zip/
H A DFileBuilder.java16 * 2 along with this work; if not, write to the Free Software Foundation,
63 raf.write(nullBytes);
64 raf.write(randomBytes);
72 raf.write(filenameBytes);

Completed in 72 milliseconds

1234567891011>>