Searched refs:php_unicode_is_prop (Results 1 – 2 of 2) sorted by relevance
/PHP-7.0/ext/mbstring/ |
H A D | php_unicode.h | 114 #define php_unicode_is_digit(cc) php_unicode_is_prop(cc, UC_ND, 0) 118 #define php_unicode_is_blank(cc) php_unicode_is_prop(cc, UC_ZS, 0) 128 #define php_unicode_is_upper(cc) php_unicode_is_prop(cc, UC_LU, 0) 129 #define php_unicode_is_lower(cc) php_unicode_is_prop(cc, UC_LL, 0) 145 #define php_unicode_is_hex(cc) php_unicode_is_prop(cc, 0, UC_HD) 154 #define php_unicode_is_rtl(cc) php_unicode_is_prop(cc, UC_R, 0) 155 #define php_unicode_is_ltr(cc) php_unicode_is_prop(cc, UC_L, 0) 168 #define php_unicode_is_dash(cc) php_unicode_is_prop(cc, UC_PD, 0) 169 #define php_unicode_is_math(cc) php_unicode_is_prop(cc, UC_SM, 0) 177 #define php_unicode_is_lsep(cc) php_unicode_is_prop(cc, UC_ZL, 0) [all …]
|
H A D | php_unicode.c | 101 MBSTRING_API int php_unicode_is_prop(unsigned long code, unsigned long mask1, in php_unicode_is_prop() function 309 int res = php_unicode_is_prop( in php_unicode_convert_case()
|
Completed in 13 milliseconds