Lines Matching defs:cc

121 #define php_unicode_is_alpha(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, -1)  argument
122 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND) argument
123 #define php_unicode_is_alnum(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, UC_ND, … argument
124 #define php_unicode_is_cntrl(cc) php_unicode_is_prop(cc, UC_CC, UC_CF, -1) argument
125 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS) argument
126 #define php_unicode_is_punct(cc) php_unicode_is_prop(cc, UC_PD, UC_PS, UC_PE, UC_PO, UC_PI, UC_PF, … argument
127 #define php_unicode_is_graph(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, UC_ND, UC_NL, UC_NO, \ argument
131 #define php_unicode_is_print(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, UC_ND, UC_NL, UC_NO, \ argument
135 #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT) argument
137 #define php_unicode_is_isocntrl(cc) php_unicode_is_prop1(cc, UC_CC) argument
138 #define php_unicode_is_fmtcntrl(cc) php_unicode_is_prop1(cc, UC_CF) argument
140 #define php_unicode_is_symbol(cc) php_unicode_is_prop(cc, UC_SM, UC_SC, UC_SO, UC_SK, -1) argument
141 #define php_unicode_is_number(cc) php_unicode_is_prop(cc, UC_ND, UC_NO, UC_NL, -1) argument
142 #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN) argument
143 #define php_unicode_is_openpunct(cc) php_unicode_is_prop1(cc, UC_PS) argument
144 #define php_unicode_is_closepunct(cc) php_unicode_is_prop1(cc, UC_PE) argument
145 #define php_unicode_is_initialpunct(cc) php_unicode_is_prop1(cc, UC_PI) argument
146 #define php_unicode_is_finalpunct(cc) php_unicode_is_prop1(cc, UC_PF) argument
151 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R) argument
152 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L) argument
153 #define php_unicode_is_strong(cc) php_unicode_is_prop(cc, UC_L, UC_R, -1) argument
154 #define php_unicode_is_weak(cc) php_unicode_is_prop(cc, UC_EN, UC_ES, UC_ET, UC_AN, UC_CS, -1) argument
155 #define php_unicode_is_neutral(cc) php_unicode_is_prop(cc, UC_B, UC_S, UC_WS, UC_ON, -1) argument
156 #define php_unicode_is_separator(cc) php_unicode_is_prop(cc, UC_B, UC_S, -1) argument
161 #define php_unicode_is_mark(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, -1) argument
162 #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM) argument
163 #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL) argument
164 #define php_unicode_is_connect(cc) php_unicode_is_prop1(cc, UC_PC) argument
165 #define php_unicode_is_dash(cc) php_unicode_is_prop1(cc, UC_PD) argument
166 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM) argument
167 #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC) argument
168 #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK) argument
169 #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN) argument
170 #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC) argument
171 #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME) argument
172 #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO) argument
173 #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS) argument
174 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL) argument
175 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP) argument
177 #define php_unicode_is_identstart(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LT, UC_LO, UC_NL, -1) argument
178 #define php_unicode_is_identpart(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LT, UC_LO, UC_NL, \ argument
184 #define php_unicode_is_han(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\ argument
186 #define php_unicode_is_hangul(cc) ((cc) >= 0xac00 && (cc) <= 0xd7ff) argument
192 #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED) argument
193 #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE) argument