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
30 * types from an underlying input stream in a machine-independent
36 * methods in this class.
49 * @param in the specified input stream
51 public DataInputStream(InputStream in) {
52 super(in);
78 * be the number of bytes actually read; these bytes will be stored in
96 * @see java.io.FilterInputStream#in
100 return in.read(b, 0, b.length);
122 * bytes actually read; these bytes will be stored in elements
132 * @param off the start offset in the destination array <code>b</code>
145 * @see java.io.FilterInputStream#in
149 return in.read(b, off, len);
166 * @see java.io.FilterInputStream#in
188 * @see java.io.FilterInputStream#in
195 int count = in.read(b, off + n, len - n);
220 while ((total<n) && ((cur = (int) in.skip(n-total)) > 0)) {
239 * @see java.io.FilterInputStream#in
242 int ch = in.read();
262 * @see java.io.FilterInputStream#in
265 int ch = in.read();
285 * @see java.io.FilterInputStream#in
288 int ch = in.read();
309 * @see java.io.FilterInputStream#in
312 int ch1 = in.read();
313 int ch2 = in.read();
334 * @see java.io.FilterInputStream#in
337 int ch1 = in.read();
338 int ch2 = in.read();
359 * @see java.io.FilterInputStream#in
362 int ch1 = in.read();
363 int ch2 = in.read();
384 * @see java.io.FilterInputStream#in
387 int ch1 = in.read();
388 int ch2 = in.read();
389 int ch3 = in.read();
390 int ch4 = in.read();
413 * @see java.io.FilterInputStream#in
487 * DataInputStream d =&nbsp;new&nbsp;DataInputStream(in);
492 * =&nbsp;new&nbsp;BufferedReader(new&nbsp;InputStreamReader(in));
498 * @see java.io.FilterInputStream#in
513 switch (c = in.read()) {
519 int c2 = in.read();
521 if (!(in instanceof PushbackInputStream)) {
522 this.in = new PushbackInputStream(in);
524 ((PushbackInputStream)in).unread(c2);
569 * stream <code>in</code> a representation
570 * of a Unicode character string encoded in
577 * @param in a data input stream.
588 public final static String readUTF(DataInput in) throws IOException {
589 int utflen = in.readUnsignedShort();
592 if (in instanceof DataInputStream) {
593 DataInputStream dis = (DataInputStream)in;
609 in.readFully(bytearr, 0, utflen);