Searched defs:read (Results 151 - 175 of 473) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DVersionSpecHelper.java52 return read (a.create_input_stream ());
71 public static String read (org.omg.CORBA.portable.InputStream istream) method in class:VersionSpecHelper
H A DVisibilityHelper.java54 return read (a.create_input_stream ());
73 public static short read (org.omg.CORBA.portable.InputStream istream) method in class:VisibilityHelper
H A DWCharSeqHelper.java64 return read (a.create_input_stream ());
84 public static char[] read (org.omg.CORBA.portable.InputStream istream) method in class:WCharSeqHelper
H A DWrongTransactionHelper.java51 return read (a.create_input_stream ());
84 public static org.omg.CORBA.WrongTransaction read (org.omg.CORBA.portable.InputStream istream) method in class:WrongTransactionHelper
87 // read and discard the repository ID
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A DCurrentHelper.java70 return read (a.create_input_stream ());
89 public static org.omg.PortableServer.Current read ( method in class:CurrentHelper
H A DPOAHelper.java61 return read (a.create_input_stream ());
79 public static org.omg.PortableServer.POA read ( method in class:POAHelper
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/code/
H A DCompressedReadStream.java40 return (read() != 0);
44 return (byte) read();
60 int b0 = read();
115 int b_i = read(pos + (++i));
125 private short read(int index) { method in class:CompressedReadStream
130 private short read() { method in class:CompressedReadStream
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DAddressDataSource.java79 public int read(byte[] b) throws IOException { method in class:AddressDataSource
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DAddressDataSource.java79 public int read(byte[] b) throws IOException { method in class:AddressDataSource
/openjdk7/jdk/src/share/classes/javax/swing/
H A DProgressMonitorInputStream.java50 * an InterruptedIOException will be thrown on the next read.
106 * Overrides <code>FilterInputStream.read</code>
107 * to update the progress monitor after the read.
109 public int read() throws IOException { method in class:ProgressMonitorInputStream
110 int c = in.read();
123 * Overrides <code>FilterInputStream.read</code>
124 * to update the progress monitor after the read.
126 public int read(byte b[]) throws IOException { method in class:ProgressMonitorInputStream
127 int nr = in.read(b);
140 * Overrides <code>FilterInputStream.read</cod
143 public int read(byte b[], method in class:ProgressMonitorInputStream
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DEditorKit.java139 * @param in The stream to read from
147 public abstract void read(InputStream in, Document doc, int pos) method in class:EditorKit
172 * generally be the preferred way to read in the data.
176 * @param in The stream to read from
184 public abstract void read(Reader in, Document doc, int pos) method in class:EditorKit
/openjdk7/jdk/src/share/classes/java/io/
H A DByteArrayInputStream.java31 * may be read from the stream. An internal
33 * be supplied by the <code>read</code> method.
50 * only bytes that can ever be read from the
52 * the next byte to be read.
57 * The index of the next character to read from the input stream buffer.
60 * The next byte to be read from the input stream buffer
87 * can ever be read from the input stream buffer.
120 * @param offset the offset in the buffer of the first byte to read.
121 * @param length the maximum number of bytes to read from the buffer.
137 * This <code>read</cod
143 public synchronized int read() { method in class:ByteArrayInputStream
176 public synchronized int read(byte b[], int off, int len) { method in class:ByteArrayInputStream
[all...]
H A DLineNumberInputStream.java39 * <code>1</code> when a <code>read</code> returns a newline character.
76 * The <code>read</code> method of
77 * <code>LineNumberInputStream</code> calls the <code>read</code>
90 public int read() throws IOException { method in class:LineNumberInputStream
96 c = in.read();
101 pushBack = in.read();
116 * The <code>read</code> method of
118 * <code>read</code> method of zero arguments to fill in the byte array.
120 * @param b the buffer into which the data is read.
122 * @param len the maximum number of bytes read
129 public int read(byte b[], int off, int len) throws IOException { method in class:LineNumberInputStream
[all...]
H A DReader.java31 * subclass must implement are read(char[], int, int) and close(). Most
84 * Attempts to read characters into the specified character buffer.
89 * @param target the buffer to read characters into
94 * @throws ReadOnlyBufferException if target is a read only buffer
97 public int read(java.nio.CharBuffer target) throws IOException { method in class:Reader
100 int n = read(cbuf, 0, len);
113 * @return The character read, as an integer in the range 0 to 65535
119 public int read() throws IOException { method in class:Reader
121 if (read(cb, 0, 1) == -1)
133 * @return The number of characters read, o
139 public int read(char cbuf[]) throws IOException { method in class:Reader
157 abstract public int read(char cbuf[], int off, int len) throws IOException; method in class:Reader
[all...]
H A DStringReader.java62 * @return The character read, or -1 if the end of the stream has been
67 public int read() throws IOException { method in class:StringReader
81 * @param len Maximum number of characters to read
83 * @return The number of characters read, or -1 if the end of the
88 public int read(char cbuf[], int off, int len) throws IOException { method in class:StringReader
117 * <p>If the entire string has been read or skipped, then this method has
136 * Tells whether this stream is ready to be read.
138 * @return True if the next read() is guaranteed not to block for input
161 * read while still preserving the mark. Because
194 * it. Once the stream has been closed, further read(),
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DFileImageInputStream.java54 * Constructs a <code>FileImageInputStream</code> that will read
58 * object is constructed and the time of the last call to a read
61 * @param f a <code>File</code> to read from.
66 * and does not allow read access to the file.
77 * Constructs a <code>FileImageInputStream</code> that will read
81 * object is constructed and the time of the last call to a read
84 * @param raf a <code>RandomAccessFile</code> to read from.
104 public int read() throws IOException { method in class:FileImageInputStream
107 int val = raf.read();
114 public int read(byt method in class:FileImageInputStream
[all...]
H A DFileImageOutputStream.java96 public int read() throws IOException { method in class:FileImageOutputStream
99 int val = raf.read();
106 public int read(byte[] b, int off, int len) throws IOException { method in class:FileImageOutputStream
109 int nbytes = raf.read(b, off, len);
140 * <code>EOFException</code> will be thrown only if a read is
H A DMemoryCacheImageOutputStream.java37 * read/modify/write operations. Reading can occur only on parts of
64 public int read() throws IOException { method in class:MemoryCacheImageOutputStream
69 int val = cache.read(streamPos);
76 public int read(byte[] b, int off, int len) throws IOException { method in class:MemoryCacheImageOutputStream
82 // Fix 4467608: read([B,I,I) works incorrectly if len<=0
95 // no more bytes left to read from cache
102 // and so the rest of the error checking is done by cache.read()
105 cache.read(b, off, len, streamPos);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelOscillatorStream.java45 public int read(float[][] buffer, int offset, int len) throws IOException; method in interface:ModelOscillatorStream
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/parser/
H A DPositionInputStream.java40 * InputStream that keeps track of total bytes read (in effect
51 public int read() throws IOException { method in class:PositionInputStream
52 int res = super.read();
57 public int read(byte[] b, int off, int len) throws IOException { method in class:PositionInputStream
58 int res = super.read(b, off, len);
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDInputStream.java63 this.ch = in.read();
99 ch = in.read();
108 public int read() throws IOException { method in class:DTDInputStream
111 ch = in.read();
120 ch = in.read();
130 return read();
138 ch = in.read();
142 if ((ch = in.read()) == '\r') {
143 ch = in.read();
154 return read();
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DSubImageInputStream.java46 public int read() throws IOException { method in class:SubImageInputStream
51 return stream.read();
55 public int read(byte[] b, int off, int len) throws IOException { method in class:SubImageInputStream
61 int bytes = stream.read(b, off, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DQPDecoderStream.java39 * any input stream and read bytes from this filter. The decoding
40 * is done as the bytes are read out.
70 public int read() throws IOException { method in class:QPDecoderStream
77 int c = in.read();
81 while ((c = in.read()) == ' ')
97 int a = in.read();
105 return read();
108 int b = in.read();
114 return read();
120 ba[1] = (byte)in.read();
153 public int read(byte[] buf, int off, int len) throws IOException { method in class:QPDecoderStream
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DFileData.java38 private final long pointer; // read position
51 public byte[] read() { method in class:FileData
53 file.read(pointer, buf, 0, length);
H A DMemoryData.java60 public byte[] read() { method in class:MemoryData

Completed in 34 milliseconds

1234567891011>>