Searched refs:ctypes (Results 1 – 8 of 8) sorted by relevance
/PHP-8.0/ext/pcre/pcre2lib/ |
H A D | pcre2_match.c | 2244 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match() 2256 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match() 2268 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match() 2280 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match() 2292 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match() 2304 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match() 2992 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match() 3024 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match() 3058 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match() 3075 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match() [all …]
|
H A D | pcre2_auto_possess.c | 972 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes() 976 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes() 980 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes() 984 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes() 988 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes() 992 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
|
H A D | pcre2_dfa_match.c | 536 const uint8_t *ctypes, *lcc, *fcc; in internal_dfa_match() local 566 ctypes = mb->tables + ctypes_offset; in internal_dfa_match() 1087 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0) in internal_dfa_match() 1096 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)) in internal_dfa_match() 1125 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match() 1150 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match() 1281 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match() 1312 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match() 1342 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match() 1370 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match() [all …]
|
H A D | pcre2_substitute.c | 581 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute() local 582 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
|
H A D | pcre2_intmodedep.h | 720 const uint8_t *ctypes; /* Points to table of type maps */ member 859 const uint8_t *ctypes; /* Points to table of type maps */ member
|
H A D | pcre2_compile.c | 2102 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp() 2334 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name() 2666 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex() 2766 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex() 2833 ok = MAX_255(ptr[1]) && (cb->ctypes[ptr[1]] & ctype_lcletter) != 0; in parse_regex() 3693 else if (CHMAX_255(c) && (cb->ctypes[c] & ctype_lcletter) != 0) in parse_regex() 5927 (cb->ctypes[c] & ctype_letter) != 0 && in compile_branch() 5928 (cb->ctypes[d] & ctype_letter) != 0 && in compile_branch() 9754 cb.ctypes = tables + ctypes_offset; in pcre2_compile()
|
H A D | pcre2_jit_compile.c | 449 sljit_sw ctypes; member 4060 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char7_type() 4104 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type() 4126 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type() 4137 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type() 4158 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type() 4390 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in do_utfreadtype8() 6545 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary() 6592 OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary() 8469 …if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_word, FALS… in compile_char1_matchingpath() [all …]
|
/PHP-8.0/ext/pdo/tests/ |
H A D | pdo_018.phpt | 100 $ctypes = array(); 109 $ctypes[$cname] = $ctype; 113 var_dump($ctypes); 125 $ctype = $ctypes[get_class($obj)];
|
Completed in 89 milliseconds