Searched refs:php_unicode_is_prop (Results 1 – 2 of 2) sorted by relevance
/PHP-8.2/ext/mbstring/ |
H A D | php_unicode.h | 77 MBSTRING_API bool php_unicode_is_prop(unsigned long code, ...); 112 #define php_unicode_is_alpha(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, -1) 118 #define php_unicode_is_graph(cc) php_unicode_is_prop(cc, \ 122 #define php_unicode_is_print(cc) php_unicode_is_prop(cc, \ 128 #define php_unicode_is_symbol(cc) php_unicode_is_prop(cc, UC_SM, UC_SC, UC_SO, UC_SK, -1) 129 #define php_unicode_is_number(cc) php_unicode_is_prop(cc, UC_ND, UC_NO, UC_NL, -1) 137 #define php_unicode_is_strong(cc) php_unicode_is_prop(cc, UC_L, UC_R, -1) 138 #define php_unicode_is_weak(cc) php_unicode_is_prop(cc, UC_EN, UC_ES, UC_ET, UC_AN, UC_CS, -1) 139 #define php_unicode_is_neutral(cc) php_unicode_is_prop(cc, UC_B, UC_S, UC_WS, UC_ON, -1) 140 #define php_unicode_is_separator(cc) php_unicode_is_prop(cc, UC_B, UC_S, -1) [all …]
|
H A D | php_unicode.c | 68 MBSTRING_API bool php_unicode_is_prop(unsigned long code, ...) in php_unicode_is_prop() function
|
Completed in 9 milliseconds