Home | History | Annotate | Download | only in core

Lines Matching refs:nextChar

185                 char nextChar = getNextChar();
186 tok.tokenValue = String.valueOf(nextChar);
187 if (isAlpha(nextChar)) {
189 } else if (isDigit(nextChar)) {
192 tok.tokenType = (int) nextChar;
322 char nextChar = lookAhead(0);
323 return isTokenChar(nextChar);
331 char nextChar = lookAhead(0);
332 if (isAlphaDigit(nextChar)) {
336 switch (nextChar) {
376 char nextChar = lookAhead(0);
377 if ( isTokenChar(nextChar) ) {
394 char nextChar = lookAhead(0);
395 if (isAlphaDigit(nextChar)) {
400 switch (nextChar) {
434 char nextChar = lookAhead(0);
435 if (isAlphaDigit(nextChar)) {
440 switch (nextChar) {
488 char nextChar = lookAhead(0);
494 isValid = isAlpha(nextChar);
497 isValid = isDigit(nextChar);
500 isValid = isAlphaDigit(nextChar);
503 isValid = nextChar == validChar;
727 char nextchar = lookAhead(0);
728 if (nextchar == '\0') {
734 retval.append(nextchar);