Lines Matching defs:cc

114 #define php_unicode_is_alpha(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, -1)  argument
115 #define php_unicode_is_digit(cc) php_unicode_is_prop1(cc, UC_ND) argument
116 #define php_unicode_is_alnum(cc) php_unicode_is_prop(cc, UC_LU, UC_LL, UC_LM, UC_LO, UC_LT, UC_ND, … argument
117 #define php_unicode_is_cntrl(cc) php_unicode_is_prop1(cc, UC_C) argument
118 #define php_unicode_is_blank(cc) php_unicode_is_prop1(cc, UC_ZS) argument
119 #define php_unicode_is_punct(cc) php_unicode_is_prop1(cc, UC_P) argument
120 #define php_unicode_is_graph(cc) php_unicode_is_prop(cc, \ argument
124 #define php_unicode_is_print(cc) php_unicode_is_prop(cc, \ argument
128 #define php_unicode_is_title(cc) php_unicode_is_prop1(cc, UC_LT) argument
130 #define php_unicode_is_symbol(cc) php_unicode_is_prop(cc, UC_SM, UC_SC, UC_SO, UC_SK, -1) argument
131 #define php_unicode_is_number(cc) php_unicode_is_prop(cc, UC_ND, UC_NO, UC_NL, -1) argument
132 #define php_unicode_is_nonspacing(cc) php_unicode_is_prop1(cc, UC_MN) argument
137 #define php_unicode_is_rtl(cc) php_unicode_is_prop1(cc, UC_R) argument
138 #define php_unicode_is_ltr(cc) php_unicode_is_prop1(cc, UC_L) argument
139 #define php_unicode_is_strong(cc) php_unicode_is_prop(cc, UC_L, UC_R, -1) argument
140 #define php_unicode_is_weak(cc) php_unicode_is_prop(cc, UC_EN, UC_ES, UC_ET, UC_AN, UC_CS, -1) argument
141 #define php_unicode_is_neutral(cc) php_unicode_is_prop(cc, UC_B, UC_S, UC_WS, UC_ON, -1) argument
142 #define php_unicode_is_separator(cc) php_unicode_is_prop(cc, UC_B, UC_S, -1) argument
147 #define php_unicode_is_mark(cc) php_unicode_is_prop(cc, UC_MN, UC_MC, UC_ME, -1) argument
148 #define php_unicode_is_modif(cc) php_unicode_is_prop1(cc, UC_LM) argument
149 #define php_unicode_is_letnum(cc) php_unicode_is_prop1(cc, UC_NL) argument
150 #define php_unicode_is_math(cc) php_unicode_is_prop1(cc, UC_SM) argument
151 #define php_unicode_is_currency(cc) php_unicode_is_prop1(cc, UC_SC) argument
152 #define php_unicode_is_modifsymbol(cc) php_unicode_is_prop1(cc, UC_SK) argument
153 #define php_unicode_is_nsmark(cc) php_unicode_is_prop1(cc, UC_MN) argument
154 #define php_unicode_is_spmark(cc) php_unicode_is_prop1(cc, UC_MC) argument
155 #define php_unicode_is_enclosing(cc) php_unicode_is_prop1(cc, UC_ME) argument
156 #define php_unicode_is_private(cc) php_unicode_is_prop1(cc, UC_CO) argument
157 #define php_unicode_is_surrogate(cc) php_unicode_is_prop1(cc, UC_OS) argument
158 #define php_unicode_is_lsep(cc) php_unicode_is_prop1(cc, UC_ZL) argument
159 #define php_unicode_is_psep(cc) php_unicode_is_prop1(cc, UC_ZP) argument
164 #define php_unicode_is_han(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\ argument
166 #define php_unicode_is_hangul(cc) ((cc) >= 0xac00 && (cc) <= 0xd7ff) argument
172 #define php_unicode_is_cased(cc) php_unicode_is_prop1(cc, UC_CASED) argument
173 #define php_unicode_is_case_ignorable(cc) php_unicode_is_prop1(cc, UC_CASE_IGNORABLE) argument