Lines Matching refs:input
31 * The <code>StreamTokenizer</code> class takes an input stream and
38 * Each byte read from the input stream is regarded as a character
69 private InputStream input = null;
114 * <li><code>TT_EOF</code> indicates that the end of the input stream
200 * Creates a stream tokenizer that parses the specified input
219 * input stream is to convert it into a character stream, for example:
225 * @param is an input stream.
236 input = is;
242 * @param r a Reader object providing the input stream.
287 * separate tokens in the input stream.
501 else if (input != null)
502 return input.read();
508 * Parses the next token from the input stream of this tokenizer.