• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/OpenLDAP-491.1/OpenLDAP/libraries/liblunicode/ucdata/

Lines Matching refs:cc

125 #define ucisalpha(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT, 0)
126 #define ucisdigit(cc) ucisprop(cc, UC_ND, 0)
127 #define ucisalnum(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT|UC_ND, 0)
128 #define uciscntrl(cc) ucisprop(cc, UC_CC|UC_CF, 0)
129 #define ucisspace(cc) ucisprop(cc, UC_ZS|UC_SS, 0)
130 #define ucisblank(cc) ucisprop(cc, UC_ZS, 0)
131 #define ucispunct(cc) ucisprop(cc, UC_PD|UC_PS|UC_PE|UC_PO, UC_PI|UC_PF)
132 #define ucisgraph(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME|UC_ND|UC_NL|UC_NO|\
136 #define ucisprint(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME|UC_ND|UC_NL|UC_NO|\
140 #define ucisupper(cc) ucisprop(cc, UC_LU, 0)
141 #define ucislower(cc) ucisprop(cc, UC_LL, 0)
142 #define ucistitle(cc) ucisprop(cc, UC_LT, 0)
143 #define ucisxdigit(cc) ucisprop(cc, 0, UC_HD)
145 #define ucisisocntrl(cc) ucisprop(cc, UC_CC, 0)
146 #define ucisfmtcntrl(cc) ucisprop(cc, UC_CF, 0)
148 #define ucissymbol(cc) ucisprop(cc, UC_SM|UC_SC|UC_SO|UC_SK, 0)
149 #define ucisnumber(cc) ucisprop(cc, UC_ND|UC_NO|UC_NL, 0)
150 #define ucisnonspacing(cc) ucisprop(cc, UC_MN, 0)
151 #define ucisopenpunct(cc) ucisprop(cc, UC_PS, 0)
152 #define ucisclosepunct(cc) ucisprop(cc, UC_PE, 0)
153 #define ucisinitialpunct(cc) ucisprop(cc, 0, UC_PI)
154 #define ucisfinalpunct(cc) ucisprop(cc, 0, UC_PF)
156 #define uciscomposite(cc) ucisprop(cc, 0, UC_CM)
157 #define ucishex(cc) ucisprop(cc, 0, UC_HD)
158 #define ucisquote(cc) ucisprop(cc, 0, UC_QM)
159 #define ucissymmetric(cc) ucisprop(cc, 0, UC_SY)
160 #define ucismirroring(cc) ucisprop(cc, 0, UC_MR)
161 #define ucisnonbreaking(cc) ucisprop(cc, 0, UC_NB)
166 #define ucisrtl(cc) ucisprop(cc, UC_R, 0)
167 #define ucisltr(cc) ucisprop(cc, UC_L, 0)
168 #define ucisstrong(cc) ucisprop(cc, UC_L|UC_R, 0)
169 #define ucisweak(cc) ucisprop(cc, UC_EN|UC_ES, UC_ET|UC_AN|UC_CS)
170 #define ucisneutral(cc) ucisprop(cc, 0, UC_B|UC_S|UC_WS|UC_ON)
171 #define ucisseparator(cc) ucisprop(cc, 0, UC_B|UC_S)
176 #define ucismark(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME, 0)
177 #define ucismodif(cc) ucisprop(cc, UC_LM, 0)
178 #define ucisletnum(cc) ucisprop(cc, UC_NL, 0)
179 #define ucisconnect(cc) ucisprop(cc, UC_PC, 0)
180 #define ucisdash(cc) ucisprop(cc, UC_PD, 0)
181 #define ucismath(cc) ucisprop(cc, UC_SM, 0)
182 #define uciscurrency(cc) ucisprop(cc, UC_SC, 0)
183 #define ucismodifsymbol(cc) ucisprop(cc, UC_SK, 0)
184 #define ucisnsmark(cc) ucisprop(cc, UC_MN, 0)
185 #define ucisspmark(cc) ucisprop(cc, UC_MC, 0)
186 #define ucisenclosing(cc) ucisprop(cc, UC_ME, 0)
187 #define ucisprivate(cc) ucisprop(cc, UC_CO, 0)
188 #define ucissurrogate(cc) ucisprop(cc, UC_OS, 0)
189 #define ucislsep(cc) ucisprop(cc, UC_ZL, 0)
190 #define ucispsep(cc) ucisprop(cc, UC_ZP, 0)
192 #define ucisidentstart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL, 0)
193 #define ucisidentpart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL|\
196 #define ucisdefined(cc) ucisprop(cc, 0, UC_CP)
197 #define ucisundefined(cc) !ucisprop(cc, 0, UC_CP)
202 #define ucishan(cc) (((cc) >= 0x4e00 && (cc) <= 0x9fff) ||\
203 ((cc) >= 0xf900 && (cc) <= 0xfaff))
204 #define ucishangul(cc) ((cc) >= 0xac00 && (cc) <= 0xd7ff)