Searched defs:ttype (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/io/
H A DStreamTokenizer.java31 * Contains a number if the current token is a number ({@code ttype} ==
37 * Contains a string if the current token is a word ({@code ttype} ==
68 * After calling {@code nextToken()}, {@code ttype} contains the type of
70 * converted to an integer is stored in {@code ttype}. For a quoted string,
81 public int ttype = TT_UNKNOWN; field in class:StreamTokenizer
217 * as {@code TT_EOF} in {@code ttype} by this tokenizer.
249 * type of the token is stored in the {@code ttype} field, additional
252 * @return the value of {@code ttype}.
259 if (ttype != TT_UNKNOWN) {
260 return ttype;
[all...]

Completed in 402 milliseconds