ctype_digit 101 ext/ctype/ctype.c PHP_FE(ctype_digit, arginfo_ctype_digit) ctype_digit 181 ext/pcre/pcrelib/dftables.c ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, ctype_digit 3501 ext/pcre/pcrelib/pcre_compile.c if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE; ctype_digit 3505 ext/pcre/pcrelib/pcre_compile.c if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE; ctype_digit 2358 ext/pcre/pcrelib/pcre_exec.c (md->ctypes[c] & ctype_digit) != 0 ctype_digit 2375 ext/pcre/pcrelib/pcre_exec.c (md->ctypes[c] & ctype_digit) == 0 ctype_digit 4534 ext/pcre/pcrelib/pcre_exec.c if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) ctype_digit 4549 ext/pcre/pcrelib/pcre_exec.c if (cc >= 128 || (md->ctypes[cc] & ctype_digit) == 0) ctype_digit 4796 ext/pcre/pcrelib/pcre_exec.c if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) ctype_digit 4810 ext/pcre/pcrelib/pcre_exec.c if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) ctype_digit 5228 ext/pcre/pcrelib/pcre_exec.c if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) ctype_digit 5233 ext/pcre/pcrelib/pcre_exec.c if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0) ctype_digit 5369 ext/pcre/pcrelib/pcre_exec.c if (MAX_255(c) && (md->ctypes[c] & ctype_digit) != 0) RRETURN(MATCH_NOMATCH); ctype_digit 5373 ext/pcre/pcrelib/pcre_exec.c if (!MAX_255(c) || (md->ctypes[c] & ctype_digit) == 0) RRETURN(MATCH_NOMATCH); ctype_digit 5846 ext/pcre/pcrelib/pcre_exec.c if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) break; ctype_digit 5861 ext/pcre/pcrelib/pcre_exec.c if (c >= 256 ||(md->ctypes[c] & ctype_digit) == 0) break; ctype_digit 6100 ext/pcre/pcrelib/pcre_exec.c if (MAX_255(*eptr) && (md->ctypes[*eptr] & ctype_digit) != 0) break; ctype_digit 6113 ext/pcre/pcrelib/pcre_exec.c if (!MAX_255(*eptr) || (md->ctypes[*eptr] & ctype_digit) == 0) break; ctype_digit 5294 ext/pcre/pcrelib/pcre_jit_compile.c OP2(SLJIT_AND | SLJIT_SET_E, SLJIT_UNUSED, 0, TMP1, 0, SLJIT_IMM, ctype_digit); ctype_digit 140 ext/pcre/pcrelib/pcre_maketables.c if (isdigit(i)) x += ctype_digit;