Lines Matching refs:to

8  * particular file as subject to the "Classpath" exception as provided
18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * parses it into "tokens", allowing the tokens to be
34 * and a number of flags that can be set to various states. The
40 * The character value is used to look up five possible attributes of
47 * <li>Whether line terminators are to be returned as tokens or treated
49 * <li>Whether C-style comments are to be recognized and skipped.
50 * <li>Whether C++-style comments are to be recognized and skipped.
51 * <li>Whether the characters of identifiers are converted to lowercase.
74 * The next character to be considered by the nextToken method. May also
75 * be NEED_CHAR to indicate that a new character should be read, or SKIP_LF
76 * to indicate that a new character should be read and, if it is a '\n'
102 * After a call to the <code>nextToken</code> method, this field
104 * token, its value is the single character, converted to an integer.
201 * stream. The stream tokenizer is initialized to the following
207 * considered to be alphabetic.
209 * <code>'&#92;u0020'</code> are considered to be white space.
218 * @deprecated As of JDK version 1.1, the preferred way to tokenize an
219 * input stream is to convert it into a character stream, for example:
286 * are white space characters. White space characters serve only to
330 * single-character token and sets <code>ttype</code> field to the
334 * with the ability of a <code>StreamTokenizer</code> to count
348 * comment. All characters from the comment character to the end of
365 * constant, the <code>ttype</code> field is set to the string
366 * delimiter and the <code>sval</code> field is set to the body of
371 * the string quote character, up to (but not including) the next
375 * converted to single characters as the string is parsed.
402 * field to the value <code>TT_NUMBER</code> and putting the numeric
420 * <code>TT_EOL</code> and also sets the <code>ttype</code> field to
430 * treated as white space and serve only to separate tokens.
452 * @param flag <code>true</code> indicates to recognize and ignore
464 * a comment that extends to the end of the line.
469 * @param flag <code>true</code> indicates to recognize and ignore
516 * calling nextToken to parse successive tokens until TT_EOF
548 ttype = c; /* Just to be safe */
611 /* Do one division of a likely-to-be-more-accurate number */
697 * character then arrange to read a new character next time
755 * Causes the next call to the <code>nextToken</code> method of this
756 * tokenizer to return the current value in the <code>ttype</code>
757 * field, and not to modify the value in the <code>nval</code> or