Lines Matching refs:in
9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
36 private static void dotest(PushbackInputStream in , int expected)
40 int got = in.available();
44 RuntimeException("Unexpected number of bytes available in the PushBackInputStream");
53 PushbackInputStream in = new
56 dotest(in , 10);
58 in.read();
59 dotest(in , 9);
61 in.unread(20);
62 dotest(in , 10);
64 in.unread(20);
65 dotest(in , 11);