Searched refs:ctype_digit (Results 1 – 7 of 7) sorted by relevance
/external/pcre/dist2/src/ |
D | pcre2_maketables.c | 142 if (isdigit(i)) x += ctype_digit;
|
D | dftables.c | 189 ctype_space, ctype_letter, ctype_lcletter, ctype_digit, ctype_word); in main()
|
D | pcre2_match.c | 2172 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match() 2184 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match() 2920 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match() 2935 if (cc >= 128 || (mb->ctypes[cc] & ctype_digit) == 0) in match() 3186 if (MAX_255(*Feptr) && (mb->ctypes[*Feptr] & ctype_digit) != 0) in match() 3200 if (!MAX_255(*Feptr) || (mb->ctypes[*Feptr] & ctype_digit) == 0) in match() 3617 if (fc < 256 && (mb->ctypes[fc] & ctype_digit) != 0) in match() 3622 if (fc >= 256 || (mb->ctypes[fc] & ctype_digit) == 0) in match() 3761 if (MAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match() 3766 if (!MAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match() [all …]
|
D | pcre2_auto_possess.c | 961 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes() 965 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
|
D | pcre2_dfa_match.c | 271 ctype_digit, ctype_digit, 279 ctype_digit, 0,
|
D | pcre2_internal.h | 581 #define ctype_digit 0x08 macro
|
D | pcre2_jit_compile.c | 8628 OP2(SLJIT_AND | SLJIT_SET_Z, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()
|