Home | History | Annotate | Download | only in imap

Lines Matching refs:next

109      * Peek next one byte.
115 final int next = mIn.peek();
116 if (next == -1) {
119 return next;
129 int next = mIn.read();
130 if (next == -1) {
133 mDiscourseLogger.addReceivedByte(next);
134 return next;
150 * Reads the next response available on the stream and returns an
209 * Read next byte from stream and throw it away. If the byte is different from {@code expected}
213 final int next = readByte();
214 if (expected != next) {
216 (int) expected, expected, next, (char) next));
288 // If the next char is not ' ', it should be EOL.
295 final int next = peek();
296 if (next == '[') {
331 final int next = peek();
332 switch (next) {
357 * Special case: If an atom contains '[', everything until the next ']' will be considered
392 // Eat all until next ']'
406 final int next = peek();
407 if (next == end) {
410 if (next != ' ') {