Searched refs:ctype_digit (Results 1 – 7 of 7) sorted by relevance
/external/pcre/dist/ |
D | pcre_maketables.c | 140 if (isdigit(i)) x += ctype_digit; in pcre_maketables()
|
D | dftables.c | 181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre_exec.c | 2358 (md->ctypes[c] & ctype_digit) != 0 in match() 2375 (md->ctypes[c] & ctype_digit) == 0 in match() 4534 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) in match() 4549 if (cc >= 128 || (md->ctypes[cc] & ctype_digit) == 0) in match() 4796 if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) in match() 4810 if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) in match() 5228 if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) in match() 5233 if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0) in match() 5369 if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); in match() 5373 if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); in match() [all …]
|
D | pcre_dfa_exec.c | 264 ctype_digit, ctype_digit, 272 ctype_digit, 0,
|
D | pcre_internal.h | 2588 #define ctype_digit 0x04 macro
|
D | pcre_compile.c | 3520 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes() 3524 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
|
D | pcre_jit_compile.c | 5331 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()
|