Home
last modified time | relevance | path

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

/php-src/ext/pcre/pcre2lib/
H A Dpcre2_match.c2312 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_digit) != 0) in match()
2324 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_digit) == 0) in match()
2336 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_space) != 0) in match()
2348 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_space) == 0) in match()
2360 if (CHMAX_255(fc) && (mb->ctypes[fc] & ctype_word) != 0) in match()
2372 if (!CHMAX_255(fc) || (mb->ctypes[fc] & ctype_word) == 0) in match()
3156 if (fc < 128 && (mb->ctypes[fc] & ctype_digit) != 0) in match()
3188 if (cc < 128 && (mb->ctypes[cc] & ctype_space) != 0) in match()
3222 if (cc < 128 && (mb->ctypes[cc] & ctype_word) != 0) in match()
3239 if (cc >= 128 || (mb->ctypes[cc] & ctype_word) == 0) in match()
[all …]
H A Dpcre2_auto_possess.c996 if (chr < 256 && (cb->ctypes[chr] & ctype_digit) != 0) return FALSE; in compare_opcodes()
1000 if (chr > 255 || (cb->ctypes[chr] & ctype_digit) == 0) return FALSE; in compare_opcodes()
1004 if (chr < 256 && (cb->ctypes[chr] & ctype_space) != 0) return FALSE; in compare_opcodes()
1008 if (chr > 255 || (cb->ctypes[chr] & ctype_space) == 0) return FALSE; in compare_opcodes()
1012 if (chr < 255 && (cb->ctypes[chr] & ctype_word) != 0) return FALSE; in compare_opcodes()
1016 if (chr > 255 || (cb->ctypes[chr] & ctype_word) == 0) return FALSE; in compare_opcodes()
H A Dpcre2_dfa_match.c538 const uint8_t *ctypes, *lcc, *fcc; in internal_dfa_match() local
568 ctypes = mb->tables + ctypes_offset; in internal_dfa_match()
1089 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0) in internal_dfa_match()
1098 ((ctypes[c] & toptable1[codevalue]) ^ toptable2[codevalue]) != 0)) in internal_dfa_match()
1129 left_word = d < 256 && (ctypes[d] & ctype_word) != 0; in internal_dfa_match()
1154 right_word = c < 256 && (ctypes[c] & ctype_word) != 0; in internal_dfa_match()
1312 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1343 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1373 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
1401 ((ctypes[c] & toptable1[d]) ^ toptable2[d]) != 0)) in internal_dfa_match()
[all …]
H A Dpcre2_substitute.c603 const uint8_t *ctypes = code->tables + ctypes_offset; in pcre2_substitute() local
604 while (MAX_255(next) && (ctypes[next] & ctype_word) != 0) in pcre2_substitute()
H A Dpcre2_intmodedep.h727 const uint8_t *ctypes; /* Points to table of type maps */ member
875 const uint8_t *ctypes; /* Points to table of type maps */ member
H A Dpcre2_compile.c2220 else if (MAX_255(c) && (cb->ctypes[c] & ctype_letter) != 0) in get_ucp()
2529 while (ptr < ptrend && MAX_255(*ptr) && (cb->ctypes[*ptr] & ctype_word) != 0) in read_name()
2961 (c < 256 && c != CHAR_NUMBER_SIGN && (cb->ctypes[c] & ctype_space) == 0 in parse_regex()
3066 if (c < 256 && (cb->ctypes[c] & ctype_space) != 0) continue; in parse_regex()
3136 ok = MAX_255(ptr[1]) && (cb->ctypes[ptr[1]] & ctype_lcletter) != 0; in parse_regex()
3961 else if (CHMAX_255(c) && (cb->ctypes[c] & ctype_lcletter) != 0) in parse_regex()
6300 (cb->ctypes[c] & ctype_letter) != 0 && in compile_branch()
6301 (cb->ctypes[d] & ctype_letter) != 0 && in compile_branch()
10245 cb.ctypes = tables + ctypes_offset; in pcre2_compile()
H A Dpcre2_jit_compile.c475 sljit_sw ctypes; member
4281 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char7_type()
4326 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4348 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4359 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4380 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in read_char8_type()
4613 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP2), common->ctypes); in do_utfreadtype8()
6869 OP1(SLJIT_MOV_U8, TMP1, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
6910 OP1(SLJIT_MOV_U8, TMP2, 0, SLJIT_MEM1(TMP1), common->ctypes); in check_wordboundary()
8999 …if (common->utf && is_char7_bitset((const sljit_u8*)common->ctypes - cbit_length + cbit_word, FALS… in compile_char1_matchingpath()
[all …]
/php-src/ext/pdo/tests/
H A Dpdo_018.phpt101 $ctypes = array();
110 $ctypes[$cname] = $ctype;
114 var_dump($ctypes);
126 $ctype = $ctypes[get_class($obj)];

Completed in 128 milliseconds