Lines Matching refs:cc

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