Lines Matching refs:next
544 PCRE2_UCHAR next; in pcre2_substitute() local
548 if ((next = *ptr) == CHAR_DOLLAR_SIGN) goto LOADLITERAL; in pcre2_substitute()
555 if (next == CHAR_LEFT_CURLY_BRACKET) in pcre2_substitute()
558 next = *ptr; in pcre2_substitute()
562 if (next == CHAR_ASTERISK) in pcre2_substitute()
565 next = *ptr; in pcre2_substitute()
569 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
571 group = next - CHAR_0; in pcre2_substitute()
574 next = *ptr; in pcre2_substitute()
575 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
576 group = group * 10 + next - CHAR_0; in pcre2_substitute()
601 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
603 name[n++] = next; in pcre2_substitute()
606 next = *ptr; in pcre2_substitute()
618 !star && ptr < repend - 2 && next == CHAR_COLON) in pcre2_substitute()