Lines Matching refs:next_chars
342 guchar next_chars[2] = { 0 };
350 PEEK_BYTE (a_this, 1, &next_chars[0]);
351 PEEK_BYTE (a_this, 2, &next_chars[1]);
353 if ((next_chars[0] == '\r' && next_chars[1] == '\n')) {
364 } else if (next_chars[0] == '\n'
365 || next_chars[0] == '\r' || next_chars[0] == '\f') {
609 guchar next_chars[2];
616 PEEK_BYTE (a_this, 1, &next_chars[0]);
617 PEEK_BYTE (a_this, 2, &next_chars[1]);
619 if (next_chars[0] != '\\') {
624 if ((next_chars[1] >= '0' && next_chars[1] <= '9')
625 || (next_chars[1] >= 'a' && next_chars[1] <= 'f')
626 || (next_chars[1] >= 'A' && next_chars[1] <= 'F')) {
699 guchar next_chars[2] = { 0 };
701 PEEK_BYTE (a_this, 1, &next_chars[0]);
703 if (next_chars[0] == '\\') {
708 PEEK_BYTE (a_this, 2, &next_chars[1]);
710 if (next_chars[1] == '\'' || next_chars[1] == '"') {
712 next_chars[1]);
739 } else if (strchr ("\t !#$%&", next_chars[0])
740 || (next_chars[0] >= '(' && next_chars[0] <= '~')) {
747 else if (cr_utils_is_nonascii (next_chars[0])) {
750 } else if (next_chars[0] == delim) {