Lines Matching refs:php_unicode_is_prop1

78 MBSTRING_API bool php_unicode_is_prop1(unsigned long code, int prop);
102 return php_unicode_is_prop1(code, UC_LL); in php_unicode_is_lower()
110 return php_unicode_is_prop1(code, UC_LU); in php_unicode_is_upper()
115 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND)
117 #define php_unicode_is_cntrl(cc) php_unicode_is_prop1(cc, UC_C)
118 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS)
119 #define php_unicode_is_punct(cc) php_unicode_is_prop1(cc, UC_P)
128 #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT)
132 #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN)
137 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R)
138 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L)
148 #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM)
149 #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL)
150 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM)
151 #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC)
152 #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK)
153 #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN)
154 #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC)
155 #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME)
156 #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO)
157 #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS)
158 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL)
159 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP)
172 #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED)
173 #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE)