Lines Matching refs:php_unicode_is_prop1

83 MBSTRING_API int php_unicode_is_prop1(unsigned long code, int prop);
105 return php_unicode_is_prop1(code, UC_LL); in php_unicode_is_lower()
113 return php_unicode_is_prop1(code, UC_LU); in php_unicode_is_upper()
118 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND)
121 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS)
131 #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT)
133 #define php_unicode_is_isocntrl(cc) php_unicode_is_prop1(cc, UC_CC)
134 #define php_unicode_is_fmtcntrl(cc) php_unicode_is_prop1(cc, UC_CF)
138 #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN)
139 #define php_unicode_is_openpunct(cc) php_unicode_is_prop1(cc, UC_PS)
140 #define php_unicode_is_closepunct(cc) php_unicode_is_prop1(cc, UC_PE)
141 #define php_unicode_is_initialpunct(cc) php_unicode_is_prop1(cc, UC_PI)
142 #define php_unicode_is_finalpunct(cc) php_unicode_is_prop1(cc, UC_PF)
147 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R)
148 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L)
158 #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM)
159 #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL)
160 #define php_unicode_is_connect(cc) php_unicode_is_prop1(cc, UC_PC)
161 #define php_unicode_is_dash(cc) php_unicode_is_prop1(cc, UC_PD)
162 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM)
163 #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC)
164 #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK)
165 #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN)
166 #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC)
167 #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME)
168 #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO)
169 #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS)
170 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL)
171 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP)
188 #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED)
189 #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE)