Lines Matching refs:input
39 public ANTLRInputStream(InputStream input) throws IOException {
40 this(input, null);
43 public ANTLRInputStream(InputStream input, int size) throws IOException {
44 this(input, size, null);
47 public ANTLRInputStream(InputStream input, String encoding) throws IOException {
48 this(input, INITIAL_BUFFER_SIZE, encoding);
51 public ANTLRInputStream(InputStream input, int size, String encoding) throws IOException {
52 this(input, size, READ_BUFFER_SIZE, encoding);
55 public ANTLRInputStream(InputStream input,
63 isr = new InputStreamReader(input, encoding);
66 isr = new InputStreamReader(input);