Home | History | Annotate | Download | only in support

Lines Matching defs:nextChar

222 		int mode = NONE, unicode = 0, count = 0, nextChar;
226 while ((nextChar = in.read()) != -1) {
228 int digit = Character.digit((char) nextChar, 16);
237 if (nextChar != '\n') {
243 switch (nextChar) {
251 nextChar = '\b';
254 nextChar = '\f';
257 nextChar = '\n';
260 nextChar = '\r';
263 nextChar = '\t';
271 switch (nextChar) {
275 while ((nextChar = in.read()) != -1) {
276 if (nextChar == '\r' || nextChar == '\n') {
310 char c = (char) nextChar;
332 buffer.append((char) nextChar);