Home
last modified time | relevance | path

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

/PHP-7.0/ext/pcre/pcrelib/
H A Dpcre_exec.c2265 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()
2289 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()
2356 (md->ctypes[c] & ctype_digit) != 0 in match()
2373 (md->ctypes[c] & ctype_digit) == 0 in match()
2390 (md->ctypes[c] & ctype_space) != 0 in match()
2407 (md->ctypes[c] & ctype_space) == 0 in match()
2424 (md->ctypes[c] & ctype_word) != 0 in match()
2441 (md->ctypes[c] & ctype_word) == 0 in match()
4532 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) in match()
4598 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()
[all …]
H A Dpcre_compile.c3518 if (chr < 256 && (cd->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
3522 if (chr > 255 || (cd->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
3526 if (chr < 256 && (cd->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
3530 if (chr > 255 || (cd->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
3534 if (chr < 255 && (cd->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
3538 if (chr > 255 || (cd->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
5654 while (MAX_255(*p) && (cd->ctypes[*p] & ctype_space) != 0) p++; in compile_branch()
6822 if (!MAX_255(*ptr) || (cd->ctypes[*ptr] & ctype_word) == 0) in compile_branch()
6828 while (MAX_255(*ptr) && (cd->ctypes[*ptr] & ctype_word) != 0) in compile_branch()
7016 if (MAX_255(ptr[1]) && (cd->ctypes[ptr[1]] & ctype_word) != 0) in compile_branch()
[all …]
H A Dpcre_study.c662 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
693 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()
1530 compile_block.ctypes = tables + ctypes_offset; in pcre_study()
H A Dpcre_internal.h2429 const pcre_uint8 *ctypes; /* Points to table of type maps */ member
2530 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-7.0/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 77 milliseconds