Home | History | Annotate | Download | only in input

Lines Matching refs:read

30  * methods being called, such as read(char[]) to read(char[], int, int).
48 * Invokes the delegate's <code>read()</code> method.
49 * @return the character read or -1 if the end of stream
52 public int read() throws IOException {
53 return in.read();
57 * Invokes the delegate's <code>read(char[])</code> method.
58 * @param chr the buffer to read the characters into
59 * @return the number of characters read or -1 if the end of stream
62 public int read(char[] chr) throws IOException {
63 return in.read(chr);
67 * Invokes the delegate's <code>read(char[], int, int)</code> method.
68 * @param chr the buffer to read the characters into
70 * @param end The number of bytes to read
71 * @return the number of characters read or -1 if the end of stream
74 public int read(char[] chr, int st, int end) throws IOException {
75 return in.read(chr, st, end);
90 * @return true if the stream is ready to be read
107 * @param idx read ahead limit