Lines Matching defs:read

33  * read one at a time. The parsing process is controlled by a table
38 * Each byte read from the input stream is regarded as a character
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'
78 * read.
87 /** The line number of the last token read */
103 * contains the type of the token just read. For a single character
110 * <li><code>TT_EOL</code> indicates that the end of line has been read.
131 * A constant indicating that the end of the stream has been read.
136 * A constant indicating that the end of the line has been read.
141 * A constant indicating that a number token has been read.
146 * A constant indicating that a word token has been read.
150 /* A constant indicating that no token has been read, used for
421 * this value when an end of line is read.
498 private int read() throws IOException {
500 return reader.read();
502 return input.read();
537 c = read();
544 c = read();
550 /* Set peekc so that the next invocation of nextToken will read
563 c = read();
565 c = read();
573 c = read();
583 c = read();
601 c = read();
625 c = read();
642 int d = read();
645 c = read();
649 int c2 = read();
652 c2 = read();
655 d = read();
684 d = read();
688 d = read();
697 * character then arrange to read a new character next time
707 c = read();
710 while ((c = read()) != '/' || prevc != '*') {
713 c = read();
715 c = read();
720 c = read();
729 while ((c = read()) != '\n' && c != '\r' && c >= 0);
735 while ((c = read()) != '\n' && c != '\r' && c >= 0);
746 while ((c = read()) != '\n' && c != '\r' && c >= 0);