Home | History | Annotate | Download | only in io

Lines Matching defs:in

9  * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 protected Reader in;
51 * @param in a Reader object providing the underlying stream.
52 * @throws NullPointerException if <code>in</code> is <code>null</code>
54 protected FilterReader(Reader in) {
55 super(in);
56 this.in = in;
65 return in.read();
74 return in.read(cbuf, off, len);
83 return in.skip(n);
92 return in.ready();
99 return in.markSupported();
103 * Marks the present position in the stream.
108 in.mark(readAheadLimit);
117 in.reset();
121 in.close();