Searched refs:ctypes (Results 1 – 5 of 5) sorted by relevance
2245 && ((md->ctypes[eptr[-1]] & ctype_word) != 0); in match()2269 && ((md->ctypes[*eptr] & ctype_word) != 0); in match()2336 (md->ctypes[c] & ctype_digit) != 0 in match()2353 (md->ctypes[c] & ctype_digit) == 0 in match()2370 (md->ctypes[c] & ctype_space) != 0 in match()2387 (md->ctypes[c] & ctype_space) == 0 in match()2404 (md->ctypes[c] & ctype_word) != 0 in match()2421 (md->ctypes[c] & ctype_word) == 0 in match()4425 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) in match()4495 if (cc < 128 && (md->ctypes[cc] & ctype_word) != 0) in match()[all …]
3221 return next > 255 || (cd->ctypes[next] & ctype_digit) == 0; in check_auto_possessive()3227 return next > 255 || (cd->ctypes[next] & ctype_space) == 0; in check_auto_possessive()3233 return next > 255 || (cd->ctypes[next] & ctype_word) == 0; in check_auto_possessive()3287 return c > 255 || (cd->ctypes[c] & ctype_digit) == 0; in check_auto_possessive()3290 return c <= 255 && (cd->ctypes[c] & ctype_digit) != 0; in check_auto_possessive()3293 return c > 255 || (cd->ctypes[c] & ctype_space) == 0; in check_auto_possessive()3296 return c <= 255 && (cd->ctypes[c] & ctype_space) != 0; in check_auto_possessive()3299 return c > 255 || (cd->ctypes[c] & ctype_word) == 0; in check_auto_possessive()3302 return c <= 255 && (cd->ctypes[c] & ctype_word) != 0; in check_auto_possessive()6802 if ((cd->ctypes[*p] & ctype_word) == 0) break; in compile_branch()[all …]
580 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()611 if (caseless && (cd->ctypes[c] & ctype_letter) != 0) SET_BIT(cd->fcc[c]); in set_table_bit()1408 compile_block.ctypes = tables + ctypes_offset; in pcre_study()
2392 const pcre_uint8 *ctypes; /* Points to table of type maps */ member2476 const pcre_uint8 *ctypes; /* Points to table of type maps */ member
90 $ctypes = array();99 $ctypes[$cname] = $ctype;103 var_dump($ctypes);115 $ctype = $ctypes[get_class($obj)];
Completed in 55 milliseconds