Lines Matching refs:next_char

435         guint32 cur_char = 0, next_char= 0;
452 PEEK_NEXT_CHAR (a_this, &next_char);
453 if (next_char == '*')
458 /* Stop condition: next_char == '*' */
463 PEEK_NEXT_CHAR (a_this, &next_char);
464 if (next_char != '*')
467 /* Stop condition: next_char != '*' */
469 if (next_char == '/')
474 PEEK_NEXT_CHAR (a_this, &next_char);
475 if (next_char == '*')
480 /* Stop condition: next_char = '*', no need to verify, because peek and read exit to error anyway */
485 PEEK_NEXT_CHAR (a_this, &next_char);
486 if (next_char != '*')
489 /* Continue condition: next_char != '*' */
491 /* Stop condition: next_char == '\/' */
804 next_char = 0;
812 PEEK_NEXT_CHAR (a_this, &next_char);
814 if (next_char == '\\') {
821 } else if (cr_utils_is_nonascii (next_char) == TRUE
822 || ((next_char >= 'a') && (next_char <= 'z'))
823 || ((next_char >= 'A') && (next_char <= 'Z'))
868 next_char = 0;
878 &next_char) ;
882 if (next_char == '\\') {
889 } else if (cr_utils_is_nonascii (next_char) == TRUE
890 || ((next_char >= 'a') && (next_char <= 'z'))
891 || ((next_char >= 'A') && (next_char <= 'Z'))
892 || ((next_char >= '0') && (next_char <= '9'))
893 || (next_char == '-')
894 || (next_char == '_') /*'_' not allowed by the spec. */
1164 guint32 next_char = 0;
1168 PEEK_NEXT_CHAR (a_this, &next_char);
1169 if (next_char == ')') {
1179 guint32 next_char = 0;
1180 PEEK_NEXT_CHAR (a_this, &next_char);
1181 if (strchr ("!#$%&", next_char)
1182 || (next_char >= '*' && next_char <= '~')
1183 || (cr_utils_is_nonascii (next_char) == TRUE)) {
1486 next_char = 0;
1521 status = cr_tknzr_peek_char (a_this, &next_char);
1527 if (next_char == '.') {
1537 } else if (IS_NUM (next_char)) {
1966 guint32 next_char = 0;
1998 PEEK_NEXT_CHAR (a_this, &next_char);
2002 switch (next_char) {
2540 if (next_char == '\\'
2542 || ((next_char >= 'a') && (next_char <= 'z'))
2543 || ((next_char >= 'A') && (next_char <= 'Z'))) {
2586 READ_NEXT_CHAR (a_this, &next_char);
2589 status = cr_token_set_delim (token, next_char);