Lines Matching refs:next
436 global options, and continue to the next match. */
521 /* Handle the next character */
547 PCRE2_UCHAR next;
551 if ((next = *ptr) == CHAR_DOLLAR_SIGN) goto LOADLITERAL;
558 if (next == CHAR_LEFT_CURLY_BRACKET)
561 next = *ptr;
565 if (next == CHAR_ASTERISK)
568 next = *ptr;
572 if (!star && next >= CHAR_0 && next <= CHAR_9)
574 group = next - CHAR_0;
577 next = *ptr;
578 if (next < CHAR_0 || next > CHAR_9) break;
579 group = group * 10 + next - CHAR_0;
604 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0)
606 name[n++] = next;
609 next = *ptr;
621 !star && ptr < repend - 2 && next == CHAR_COLON)