Searched defs:write (Results 51 - 75 of 488) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DMacOutputStream.java42 public void write(byte[] arg0) { method in class:MacOutputStream
43 super.write(arg0, 0, arg0.length);
48 public void write(int arg0) { method in class:MacOutputStream
49 super.write(arg0);
54 public void write(byte[] arg0, int arg1, int arg2) { method in class:MacOutputStream
55 super.write(arg0, arg1, arg2);
H A DSignerOutputStream.java49 public void write(byte[] arg0) { method in class:SignerOutputStream
50 super.write(arg0, 0, arg0.length);
59 public void write(int arg0) { method in class:SignerOutputStream
60 super.write(arg0);
69 public void write(byte[] arg0, int arg1, int arg2) { method in class:SignerOutputStream
70 super.write(arg0, arg1, arg2);
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
30 * an output stream, an application can write bytes to the underlying
53 * Creates a new buffered output stream to write data to the
63 * Creates a new buffered output stream to write data to the
82 out.write(buf, 0, count);
93 public synchronized void write(int b) throws IOException { method in class:BufferedOutputStream
107 * buffer, however, then this method will flush the buffer and write the
113 * @param len the number of bytes to write.
116 public synchronized void write(byte b[], int off, int len) throws IOException { method in class:BufferedOutputStream
119 flush the output buffer and then write th
[all...]
H A DFilterWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
64 public void write(int c) throws IOException { method in class:FilterWriter
65 out.write(c);
77 public void write(char cbuf[], int off, int len) throws IOException { method in class:FilterWriter
78 out.write(cbuf, off, len);
90 public void write(String str, int off, int len) throws IOException { method in class:FilterWriter
91 out.write(str, off, len);
H A DObjectOutput.java18 * 2 along with this work; if not, write to the Free Software Foundation,
57 public void write(int b) throws IOException; method in interface:ObjectOutput
65 public void write(byte b[]) throws IOException; method in interface:ObjectOutput
74 public void write(byte b[], int off, int len) throws IOException; method in interface:ObjectOutput
77 * Flushes the stream. This will write any buffered
H A DPipedOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
49 /* REMIND: identification of the read and write sides needs to be
111 * Implements the <code>write</code> method of <code>OutputStream</code>.
118 public void write(int b) throws IOException { method in class:PipedOutputStream
133 * @param len the number of bytes to write.
138 public void write(byte b[], int off, int len) throws IOException { method in class:PipedOutputStream
H A DPipedWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
38 /* REMIND: identification of the read and write sides needs to be
112 * Implements the <code>write</code> method of <code>Writer</code>.
120 public void write(int c) throws IOException { method in class:PipedWriter
138 * @param len the number of characters to write.
144 public void write(char cbuf[], int off, int len) throws IOException { method in class:PipedWriter
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DSeekableByteChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
80 int write(ByteBuffer src) throws IOException; method in interface:SeekableByteChannel
102 * indication. A later attempt to write bytes at such a position will cause
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DUserDefinedFileAttributeView.java18 * 2 along with this work; if not, write to the Free Software Foundation,
45 * {@link #read read} and {@link #write write} methods to read the value into
46 * or write from a {@link ByteBuffer}. This {@code FileAttributeView} is not
65 * to write the value of a user-defined attribute from a buffer (as if by
66 * invoking the {@link #write write} method), or byte array (byte[]).
190 * Suppose we want to write a file's MIME type as a user-defined attribute:
194 * view.write("user.mimetype", Charset.defaultCharset().encode("text/html"));
211 * method denies write acces
213 int write(String name, ByteBuffer src) throws IOException; method in interface:UserDefinedFileAttributeView
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DDigestOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 * {@link #write(int) write} methods.
46 * <code>write</code> methods results in
114 public void write(int b) throws IOException { method in class:DigestOutputStream
118 out.write(b);
144 public void write(byte[] b, int off, int len) throws IOException { method in class:DigestOutputStream
148 out.write(b, off, len);
153 * it is on, a call to one of the <code>write</code> methods results in an
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DCheckedOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
59 public void write(int b) throws IOException { method in class:CheckedOutputStream
60 out.write(b);
72 public void write(byte[] b, int off, int len) throws IOException { method in class:CheckedOutputStream
73 out.write(b, off, len);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * that write() methods first process the data before writing them out
116 public void write(int b) throws IOException { method in class:CipherOutputStream
120 output.write(obuffer);
129 * The <code>write</code> method of
130 * <code>CipherOutputStream</code> calls the <code>write</code>
137 * @see javax.crypto.CipherOutputStream#write(byte[], int, int)
140 public void write(byte b[]) throws IOException { method in class:CipherOutputStream
141 write(b, 0, b.length);
150 * @param len the number of bytes to write
154 public void write(byte b[], int off, int len) throws IOException { method in class:CipherOutputStream
[all...]
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DDigesterOutputStream.java45 public void write(byte[] arg0) { method in class:DigesterOutputStream
46 write(arg0, 0, arg0.length);
50 public void write(int arg0) { method in class:DigesterOutputStream
55 public void write(byte[] arg0, int arg1, int arg2) { method in class:DigesterOutputStream
H A DSignerOutputStream.java46 public void write(byte[] arg0) { method in class:SignerOutputStream
47 super.write(arg0, 0, arg0.length);
56 public void write(int arg0) { method in class:SignerOutputStream
57 super.write(arg0);
66 public void write(byte[] arg0, int arg1, int arg2) { method in class:SignerOutputStream
67 super.write(arg0, arg1, arg2);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DTypeScriptWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 public void write(char[] cbuf, int off, int len) throws IOException { method in class:TypeScriptWriter
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCopiedFile.java18 * 2 along with this work; if not, write to the Free Software Foundation,
38 public void write(final File parentDir) { method in class:CopiedFile
51 out.write(bit);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DCOMMarkerSegment.java18 * 2 along with this work; if not, write to the Free Software Foundation,
123 void write(ImageOutputStream ios) throws IOException { method in class:COMMarkerSegment
126 ios.write(data);
H A DDRIMarkerSegment.java18 * 2 along with this work; if not, write to the Free Software Foundation,
74 void write(ImageOutputStream ios) throws IOException { method in class:DRIMarkerSegment
75 // We don't write DRI segments; the IJG library does.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DJavadocEscapeWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
58 public void write(int ch) throws IOException { method in class:JavadocEscapeWriter
60 out.write("&lt;");
63 out.write("&amp;");
65 out.write(ch);
68 public void write(char[] buf, int off, int len) throws IOException { method in class:JavadocEscapeWriter
70 write(buf[off+i]);
73 public void write(char[] buf) throws IOException { method in class:JavadocEscapeWriter
74 write(buf,0,buf.length);
77 public void write(Strin method in class:JavadocEscapeWriter
81 public void write(String buf) throws IOException { method in class:JavadocEscapeWriter
[all...]
H A DUnicodeEscapeWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 public final void write(int ch) throws IOException { method in class:UnicodeEscapeWriter
49 if(!requireEscaping(ch)) out.write(ch);
52 out.write("\\u");
55 out.write('0');
56 out.write(s);
73 public final void write(char[] buf, int off, int len) throws IOException { method in class:UnicodeEscapeWriter
75 write(buf[off+i]);
78 public final void write(char[] buf) throws IOException { method in class:UnicodeEscapeWriter
79 write(bu
82 public final void write(String buf, int off, int len) throws IOException { method in class:UnicodeEscapeWriter
86 public final void write(String buf) throws IOException { method in class:UnicodeEscapeWriter
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DNullStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
39 public void write(int b) throws IOException { method in class:NullStream
48 public void write(byte[] b, int off, int len) throws IOException { method in class:NullStream
51 public void write(byte[] b) throws IOException { method in class:NullStream
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/
H A DGroupKind.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 Particle write(ContentModelContainer parent) { method in class:GroupKind
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DDatagramDispatcher.java18 * 2 along with this work; if not, write to the Free Software Foundation,
33 * for read and write operations.
50 int write(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
/openjdk7/jdk/test/java/io/Serializable/enum/unshared/
H A DTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
26 * @summary Verify that unshared write and read operations work properly with
36 abstract void write(ObjectOutputStream out) throws Exception; method in class:WriteReadTest
42 write(oout);
53 void write(ObjectOutputStream out) throws Exception {
73 void write(ObjectOutputStream out) throws Exception {
93 void write(ObjectOutputStream out) throws Exception {
111 void write(ObjectOutputStream out) throws Exception {
/openjdk7/jdk/test/java/io/Writer/
H A DWriteFromString.java16 * 2 along with this work; if not, write to the Free Software Foundation,
26 @summary Bug in the parameter of str.getChars called in write
41 // Should write out at offset 2 for length 4 i.e."stin"
42 lsw.write(testString, 1, 4);
46 System.err.println("Writer.write is incorrect:" + res);
51 sw.write(testString, 1, 4);
56 System.err.println("StringWriter.write is incorrect:" + res);
60 throw new Exception("Writer.write method is incorrect.");
67 * A copy of StringWriter to test the write method in Writer
88 * @param len Number of characters to write
90 public void write(char cbuf[], int off, int len) { method in class:LocalStringWriter
103 public void write(String str) { method in class:LocalStringWriter
[all...]

Completed in 55 milliseconds

1234567891011>>