Searched defs:read (Results 276 - 300 of 473) sorted by relevance

<<111213141516171819

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/
H A DUCSReader.java115 * @return The character read, as an integer in the range 0 to 127
121 public int read() throws IOException { method in class:UCSReader
122 int b0 = fInputStream.read() & 0xff;
125 int b1 = fInputStream.read() & 0xff;
129 int b2 = fInputStream.read() & 0xff;
132 int b3 = fInputStream.read() & 0xff;
146 } // read():int
155 * @param length Maximum number of characters to read
157 * @return The number of characters read, or -1 if the end of the
162 public int read(cha method in class:UCSReader
[all...]
H A DUTF8Reader.java54 /** Debug read. */
139 * @return The character read, as an integer in the range 0 to 16383
145 public int read() throws IOException { method in class:UTF8Reader
151 // bytes from the last block read. -Ac
156 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
171 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
185 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
195 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
212 ? fInputStream.read() : fBuffer[index++] & 0x00FF;
221 ? fInputStream.read()
282 public int read(char ch[], int offset, int length) throws IOException { method in class:UTF8Reader
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetComponentInfo.java88 public void read(MarshalInputStream in) { method in class:CodeSetComponentInfo.CodeSetComponent
166 public void read(MarshalInputStream in) { method in class:CodeSetComponentInfo
168 forCharData.read(in);
170 forWCharData.read(in);
200 public void read(MarshalInputStream in) { method in class:CodeSetComponentInfo.CodeSetContext
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DExceptionHandlerImpl.java56 // Used to read and write exceptions.
67 Exception read( InputStream is ) ; method in interface:ExceptionHandlerImpl.ExceptionRW
129 readMethod = helperClass.getDeclaredMethod( "read", argTypes ) ;
146 public Exception read( InputStream is ) method in class:ExceptionHandlerImpl.ExceptionRWIDLImpl
172 public Exception read( InputStream is ) method in class:ExceptionHandlerImpl.ExceptionRWRMIImpl
174 is.read_string() ; // read and ignore!
275 // reader must actually read the exception ID from
287 return rws[index].read( is ) ;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DLocateReplyMessage_1_0.java99 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:LocateReplyMessage_1_0
100 super.read(istream);
H A DLocateReplyMessage_1_1.java99 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:LocateReplyMessage_1_1
100 super.read(istream);
H A DLocateReplyMessage_1_2.java113 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:LocateReplyMessage_1_2
114 super.read(istream);
151 // read GIOP::AddressingDisposition from body and resend the
154 this.addrDisposition = AddressingDispositionHelper.read(istream);
H A DMessage_1_0.java121 // is read off java.io.InputStream (not a CDRInputStream) by IIOPConnection
123 // So, we would never need to read the Message Header off a CDRInputStream.
124 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:Message_1_0
127 this.GIOP_version = (new GIOPVersion()).read(istream);
H A DMessage_1_1.java174 // This should do nothing even if it is called. The Message Header is read
177 // So, we would never need to read the Message Header off a CDRInputStream.
178 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:Message_1_1
181 this.GIOP_version = (new GIOPVersion()).read(istream);
H A DReplyMessage_1_0.java124 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:ReplyMessage_1_0
125 super.read(istream);
157 // do nothing. The client stub will read the exception from body.
H A DReplyMessage_1_1.java125 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:ReplyMessage_1_1
126 super.read(istream);
157 // do nothing. The client stub will read the exception from body.
H A DReplyMessage_1_2.java130 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:ReplyMessage_1_2
131 super.read(istream);
140 // Ensures that the first read operation called from the stub code,
171 // do nothing. The client stub will read the exception from body.
177 // read GIOP::AddressingDisposition from body and resend the
180 this.addrDisposition = AddressingDispositionHelper.read(istream);
H A DRequestMessage_1_0.java120 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:RequestMessage_1_0
121 super.read(istream);
H A DRequestMessage_1_1.java122 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:RequestMessage_1_1
123 super.read(istream);
H A DRequestMessage_1_2.java140 public void read(org.omg.CORBA.portable.InputStream istream) { method in class:RequestMessage_1_2
141 super.read(istream);
148 this.target = TargetAddressHelper.read(istream);
156 // Ensures that the first read operation called from the stub code,
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DConnection.java50 * to handle read events.
53 * thread would just block on read when waiting for the reply.
65 * to handle read events.
68 * thread would just block on read when waiting for the reply.
75 * Called to read incoming messages.
77 * @return <code>true</code> if the thread calling read can be released.
79 public boolean read(); method in interface:Connection
204 * This method might block on a read (e.g., HTTP), put the calling
205 * thread to sleep while another thread read's the response (e.g., GIOP),
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DEnumGen.java248 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:EnumGen
252 } // read
H A DForwardValueGen.java174 read (0, " ", "value", entry, stream);
178 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:ForwardValueGen
181 } // read
H A DValueBoxGen.java41 // -D62023 <klr> Fix generation botch in helper.read for boxed bounded strings
244 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:ValueBoxGen
247 } // read
251 // <d59418 - KLR> per Simon, make "static" read call istream.read_value.
257 // done with "read", now do "read_value with real marshalling code.
273 ((JavaGenerator)member.generator ()).read (0, indent, "tmp", member, stream);
280 Util.helperName ( mType, true ) + ".read (istream);"); // <d61056>
338 ((JavaGenerator)member.generator ()).read (0, " ", entryName + ".value", member, stream);
343 stream.println (" " + entryName + ".value = " + Util.helperName (mType, true) + ".read (istream);"); // <d61056>
H A DValueGen24.java299 public int read (int index, String indent, String name, SymtabEntry entry, PrintWriter stream) method in class:ValueGen24
328 index = ((JavaGenerator)member.generator ()).read (index, indent, name + '.' + memberName, member, stream);
331 Util.helperName (mType, true) + ".read (istream);"); // <d61056>
335 } // read
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioInputStream.java38 * The audio input stream keeps track of the last byte that was read.
134 // cause that this stream will be read in bytes
193 * @see #read(byte[], int, int)
194 * @see #read(byte[])
198 public int read() throws IOException { method in class:AudioInputStream
200 throw new IOException("cannot read a single byte if frame size > 1");
204 int temp = read(data);
206 // we have a weird situation if read(byte[]) returns 0!
215 * the buffer array <code>b</code>. The number of bytes actually read is
218 * <p>This method will always read a
231 public int read(byte[] b) throws IOException { method in class:AudioInputStream
256 public int read(byte[] b, int off, int len) throws IOException { method in class:AudioInputStream
487 public int read() throws IOException { method in class:AudioInputStream.TargetDataLineInputStream
507 public int read(byte[] b, int off, int len) throws IOException { method in class:AudioInputStream.TargetDataLineInputStream
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DBufferedReader.java36 * <p> In general, each read request made of a Reader causes a corresponding
37 * read request to be made of the underlying character or byte stream. It is
38 * therefore advisable to wrap a BufferedReader around any Reader whose read()
48 * invocation of read() or readLine() could cause bytes to be read from the
130 /* Gone past read-ahead limit: Invalidate mark */
141 /* Reallocate buffer to accommodate read-ahead limit */
154 n = in.read(cb, dst, cb.length - dst);
165 * @return The character read, as an integer in the range
170 public int read() throw method in class:BufferedReader
269 public int read(char cbuf[], int off, int len) throws IOException { method in class:BufferedReader
[all...]
H A DConsole.java55 * {@link #printf printf()} as well as the read, format and write operations
63 * The console-read methods return <tt>null</tt> when the end of the
65 * Unix or control-Z on Windows. Subsequent read operations will succeed
73 * If an application needs to read a password or other secure data, it should
122 * The bulk read operations {@link java.io.Reader#read(char[]) read(char[]) },
123 * {@link java.io.Reader#read(char[], int, int) read(char[], int, int) } and
124 * {@link java.io.Reader#read(jav
419 public int read(char cbuf[], int offset, int length) method in class:Console.LineReader
[all...]
H A DFileInputStream.java96 * <code>checkRead</code> method denies read access
127 * <code>checkRead</code> method denies read access to the file.
156 * see if it's ok to read the file descriptor. If read access is denied
169 * <code>checkRead</code> method denies read access to the
206 public int read() throws IOException { method in class:FileInputStream
233 * @param b the buffer into which the data is read.
234 * @return the total number of bytes read into the buffer, or
239 public int read(byte b[]) throws IOException { method in class:FileInputStream
254 * bytes are read an
268 public int read(byte b[], int off, int len) throws IOException { method in class:FileInputStream
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java96 * <li>the {@link InputStream#read() read} methods always return
168 * assert p.getInputStream().read() == -1;
423 public int read() { return -1; } method in class:ProcessBuilder.NullInputStream
447 * <li>a redirection to read from a file, created by an invocation of
549 * Returns a redirect to read from the specified file.
558 * @return a redirect to read from the specified file
567 return "redirect to read from file \"" + file + "\"";
715 * can be read using the input stream returned by {@link
745 * can be read usin
[all...]

Completed in 80 milliseconds

<<111213141516171819