Home
last modified time | relevance | path

Searched refs:ctype_digit (Results 1 – 7 of 7) sorted by relevance

/external/pcre/dist/
Dpcre_maketables.c140 if (isdigit(i)) x += ctype_digit; in pcre_maketables()
Ddftables.c181 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
Dpcre_exec.c2358 (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 …]
Dpcre_dfa_exec.c264 ctype_digit, ctype_digit,
272 ctype_digit, 0,
Dpcre_internal.h2588 #define ctype_digit 0x04 macro
Dpcre_compile.c3520 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()
Dpcre_jit_compile.c5331 OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); in compile_char1_matchingpath()