Searched defs:write (Results 226 - 250 of 488) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/org/omg/SendingContext/
H A DCodeBaseHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
47 write (out, that);
76 public static void write (org.omg.CORBA.portable.OutputStream ostream, com.sun.org.omg.SendingContext.CodeBase value) method in class:CodeBaseHelper
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DComment.java18 * 2 along with this work; if not, write to the Free Software Foundation,
84 public void write () {System.out.println (_text);} method in class:Comment
207 18aug1997<daz> Modified generate to write comment unformatted.
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DJavaGenerator.java18 * 2 along with this work; if not, write to the Free Software Foundation,
50 // The helper read/write methods call the read/write methods.
58 // The read/write methods print the streaming of the type.
64 int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream); method in interface:JavaGenerator
H A DPrimitiveGen.java18 * 2 along with this work; if not, write to the Free Software Foundation,
131 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:PrimitiveGen
135 } // write
H A DSequenceGen.java18 * 2 along with this work; if not, write to the Free Software Foundation,
224 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:SequenceGen
257 index = ((JavaGenerator)seq.type ().generator ()).write (index, indent + " ", name + '[' + loopIndex + ']', seq.type (), stream);
264 stream.println (indent + " " + Util.helperName (seq.type (), true) + ".write (ostream, " + name + '[' + loopIndex + "]);"); // <d61056>
267 } // write
H A DStringGen.java18 * 2 along with this work; if not, write to the Free Software Foundation,
121 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:StringGen
135 } // write
H A DTypedefGen.java18 * 2 along with this work; if not, write to the Free Software Foundation,
182 write (0, " ", "value", entry, stream);
274 public int write (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:TypedefGen
297 index = ((JavaGenerator)td.type ().generator ()).write (index, indent, name, td.type (), stream);
301 stream.println (indent + Util.helperName (td.type (), true) + ".write (ostream, " + name + ");"); // <d61056>
312 index = ((JavaGenerator)tdtype.generator ()).write (index, indent, name, tdtype, stream);
316 stream.println (indent + Util.helperName (tdtype, true) + ".write (ostream, " + name + ");"); // <d61056>
319 } // write
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DStringValueHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
66 write (out, that);
118 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) method in class:StringValueHelper
H A DWStringValueHelper.java18 * 2 along with this work; if not, write to the Free Software Foundation,
70 write (out, that);
122 public static void write (org.omg.CORBA.portable.OutputStream ostream, String value) method in class:WStringValueHelper
/openjdk7/jdk/src/share/classes/javax/swing/text/rtf/
H A DAbstractFilter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 * <P> A subclass should override at least <code>write(char)</code>
44 * good idea to override <code>write(String)</code> as well. The subclass'
106 this.write(buf, 0, count);
123 this.write(buf[i]);
138 public void write(int b) method in class:AbstractFilter
148 write(ch);
153 * Implements the buffer-at-a-time write method for greater
156 * <p> <strong>PENDING:</strong> Does <code>write(byte[])</code>
157 * call <code>write(byt
160 public void write(byte[] buf, int off, int len) method in class:AbstractFilter
202 public void write(String s) method in class:AbstractFilter
219 protected abstract void write(char ch) throws IOException; method in class:AbstractFilter
[all...]
H A DRTFAttribute.java18 * 2 along with this work; if not, write to the Free Software Foundation,
58 public boolean write(AttributeSet source, method in interface:RTFAttribute
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 * to wrap a BufferedWriter around any Writer whose write() operations may be
129 out.write(cb, 0, nextChar);
139 public void write(int c) throws IOException { method in class:BufferedWriter
163 * however, then this method will flush the buffer and write the characters
169 * @param len Number of characters to write
173 public void write(char cbuf[], int off, int len) throws IOException { method in class:BufferedWriter
185 flush the buffer and then write the data directly. In this
188 out.write(cbuf, off, len);
209 * method in the {@linkplain java.io.Writer#write(jav
219 public void write(String s, int off, int len) throws IOException { method in class:BufferedWriter
[all...]
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);
H A DCharArrayWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
78 public void write(int c) { method in class:CharArrayWriter
95 public void write(char c[], int off, int len) { method in class:CharArrayWriter
118 public void write(String str, int off, int len) { method in class:CharArrayWriter
132 * @param out the output stream to write to
137 out.write(buf, 0, count);
148 * out.write(csq.toString()) </pre>
167 write(s, 0, s.length());
179 * out.write(csq.subSequence(start, end).toString()) </pre>
205 write(
[all...]
H A DFileOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
89 * Creates a file output stream to write to the file with the
105 * <code>checkWrite</code> method denies write access
114 * Creates a file output stream to write to the file with the specified
134 * <code>checkWrite</code> method denies write access
146 * Creates a file output stream to write to the file represented by
164 * <code>checkWrite</code> method denies write access
175 * Creates a file output stream to write to the file represented by
196 * <code>checkWrite</code> method denies write access
225 * Creates a file output stream to write t
282 private native void write(int b, boolean append) throws IOException; method in class:FileOutputStream
291 public void write(int b) throws IOException { method in class:FileOutputStream
321 public void write(byte b[]) throws IOException { method in class:FileOutputStream
341 public void write(byte b[], int off, int len) throws IOException { method in class:FileOutputStream
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousFileChannel.java18 * 2 along with this work; if not, write to the Free Software Foundation,
51 * write method that initiates asynchronous operations. A {@link CompletionHandler}
53 * operation. This class also defines read and write methods that initiate
58 * <p> In addition to read and write operations, this class defines the
90 * AsynchronousCloseException}. Multiple read and write operations may be
91 * outstanding at the same time. When multiple read and write operations are
239 * write access if the file is opened for writing
293 * write access if the file is opened for writing
711 * AsynchronousByteChannel#write(ByteBuffer,Object,CompletionHandler)}
714 * the write i
733 public abstract <A> void write(ByteBuffer src, method in class:AsynchronousFileChannel
769 public abstract Future<Integer> write(ByteBuffer src, long position); method in class:AsynchronousFileChannel
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DLogStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
171 public void write(int b) method in class:LogStream
188 // write prefix through to underlying byte stream
189 logWriter.write(buffer.toString());
192 // finally, write the already converted bytes of
195 logOut.write(b);
206 super.write(b);
210 * Write a subarray of bytes. Pass each through write byte method.
215 public void write(byte b[], int off, int len) method in class:LogStream
220 write(
[all...]
H A DObjID.java18 * 2 along with this work; if not, write to the Free Software Foundation,
155 * space identifier by invoking its {@link UID#write(DataOutput)}
158 * @param out the <code>ObjectOutput</code> instance to write
164 public void write(ObjectOutput out) throws IOException { method in class:ObjID
166 space.write(out);
H A DUID.java18 * 2 along with this work; if not, write to the Free Software Foundation,
228 * @param out the <code>DataOutput</code> instance to write
234 public void write(DataOutput out) throws IOException { method in class:UID
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DGZIPOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
143 public synchronized void write(byte[] buf, int off, int len) method in class:GZIPOutputStream
146 super.write(buf, off, len);
165 out.write(buf, 0, len);
169 out.write(buf, 0, len);
172 // deflater buffer, we write it separately
175 out.write(trailer);
183 out.write(new byte[] {
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileCacheImageOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
57 * Constructs a <code>FileCacheImageOutputStream</code> that will write
67 * @param stream an <code>OutputStream</code> to write to.
132 public void write(int b) throws IOException { method in class:FileCacheImageOutputStream
134 cache.write(b);
139 public void write(byte[] b, int off, int len) throws IOException { method in class:FileCacheImageOutputStream
141 cache.write(b, off, len);
159 * performed. The file length will not be increased until a write
255 stream.write(buf, 0, len);
H A DMemoryCache.java18 * 2 along with this work; if not, write to the Free Software Foundation,
172 stream.write(buf, offset, nbytes);
179 * Ensure that there is space to write a byte at the given position.
209 public void write(byte[] b, int off, int len, long pos) method in class:MemoryCache
252 public void write(int b, long pos) throws IOException { method in class:MemoryCache
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/sasl/
H A DSaslOutputStream.java18 * 2 along with this work; if not, write to the Free Software Foundation,
61 // Override this method to call write(byte[], int, int) counterpart
62 // super.write(int) simply calls out.write(int)
64 public void write(int b) throws IOException { method in class:SaslOutputStream
67 write(buffer, 0, 1);
74 public void write(byte[] buffer, int offset, int total) throws IOException { method in class:SaslOutputStream
97 out.write(lenBuf, 0, 4);
100 out.write(wrappedToken, 0, wrappedToken.length);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DUnsyncBufferedOutputStream.java52 public void write(byte[] arg0) throws IOException { method in class:UnsyncBufferedOutputStream
53 write(arg0,0,arg0.length);
57 public void write(byte[] arg0, int arg1, int len) throws IOException { method in class:UnsyncBufferedOutputStream
62 out.write(arg0,arg1,len);
73 out.write(buf,0,pointer);
79 public void write(int arg0) throws IOException { method in class:UnsyncBufferedOutputStream
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

Completed in 58 milliseconds

1234567891011>>