Lines Matching refs:php_unicode_is_prop1

87 MBSTRING_API int php_unicode_is_prop1(unsigned long code, int prop);
109 return php_unicode_is_prop1(code, UC_LL); in php_unicode_is_lower()
117 return php_unicode_is_prop1(code, UC_LU); in php_unicode_is_upper()
122 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND)
125 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS)
135 #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT)
137 #define php_unicode_is_isocntrl(cc) php_unicode_is_prop1(cc, UC_CC)
138 #define php_unicode_is_fmtcntrl(cc) php_unicode_is_prop1(cc, UC_CF)
142 #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN)
143 #define php_unicode_is_openpunct(cc) php_unicode_is_prop1(cc, UC_PS)
144 #define php_unicode_is_closepunct(cc) php_unicode_is_prop1(cc, UC_PE)
145 #define php_unicode_is_initialpunct(cc) php_unicode_is_prop1(cc, UC_PI)
146 #define php_unicode_is_finalpunct(cc) php_unicode_is_prop1(cc, UC_PF)
151 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R)
152 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L)
162 #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM)
163 #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL)
164 #define php_unicode_is_connect(cc) php_unicode_is_prop1(cc, UC_PC)
165 #define php_unicode_is_dash(cc) php_unicode_is_prop1(cc, UC_PD)
166 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM)
167 #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC)
168 #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK)
169 #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN)
170 #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC)
171 #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME)
172 #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO)
173 #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS)
174 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL)
175 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP)
192 #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED)
193 #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE)