Home
last modified time | relevance | path

Searched refs:ctypes (Results 1 – 6 of 6) sorted by relevance

/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_exec.c2267 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()
2291 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()
2358 (md->ctypes[c] & ctype_digit) != 0 in match()
2375 (md->ctypes[c] & ctype_digit) == 0 in match()
2392 (md->ctypes[c] & ctype_space) != 0 in match()
2409 (md->ctypes[c] & ctype_space) == 0 in match()
2426 (md->ctypes[c] & ctype_word) != 0 in match()
2443 (md->ctypes[c] & ctype_word) == 0 in match()
4534 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) in match()
4600 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()
[all …]
H A 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()
3528 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
3532 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
3536 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
3540 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
5656 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
6824 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6830 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
7018 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch()
[all …]
H A Dpcre_study.c664 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
695 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
1532 compile_block.ctypes = tables + ctypes_offset; in pcre_study()
H A Dpcre_internal.h2433 const pcre_uint8 *ctypes; /* Points to table of type maps */ member
2534 const pcre_uint8 *ctypes; /* Points to table of type maps */ member
H A Dpcre_jit_compile.c386 sljit_sw ctypes; member
2651 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char7_type()
2818 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
2830 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
2845 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
3037 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in do_utfreadtype8()
4187 OP1(SLJIT_MOV_UB, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
4232 OP1(SLJIT_MOV_UB, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
5325 …if (common->utf && is_char7_bitset((const pcre_uint8*)common->ctypes - cbit_length + cbit_digit, F… in compile_char1_matchingpath()
5352 …if (common->utf && is_char7_bitset((const pcre_uint8*)common->ctypes - cbit_length + cbit_word, FA… in compile_char1_matchingpath()
[all …]
/PHP-5.5/ext/pdo/tests/
H A Dpdo_018.phpt90 $ctypes = array();
99 $ctypes[$cname] = $ctype;
103 var_dump($ctypes);
115 $ctype = $ctypes[get_class($obj)];

Completed in 174 milliseconds