Symbol: ucisprop
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
124
ucisprop (krb5_ui_4 code, krb5_ui_4 mask1, krb5_ui_4 mask2);
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
126
#define ucisalpha(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
127
#define ucisdigit(cc) ucisprop(cc, UC_ND, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
128
#define ucisalnum(cc) ucisprop(cc, UC_LU|UC_LL|UC_LM|UC_LO|UC_LT|UC_ND, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
129
#define uciscntrl(cc) ucisprop(cc, UC_CC|UC_CF, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
130
#define ucisspace(cc) ucisprop(cc, UC_ZS|UC_SS, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
131
#define ucisblank(cc) ucisprop(cc, UC_ZS, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
132
#define ucispunct(cc) ucisprop(cc, UC_PD|UC_PS|UC_PE|UC_PO, UC_PI|UC_PF)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
133
#define ucisgraph(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME|UC_ND|UC_NL|UC_NO|\
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
137
#define ucisprint(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME|UC_ND|UC_NL|UC_NO|\
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
141
#define ucisupper(cc) ucisprop(cc, UC_LU, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
142
#define ucislower(cc) ucisprop(cc, UC_LL, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
143
#define ucistitle(cc) ucisprop(cc, UC_LT, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
144
#define ucisxdigit(cc) ucisprop(cc, 0, UC_HD)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
146
#define ucisisocntrl(cc) ucisprop(cc, UC_CC, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
147
#define ucisfmtcntrl(cc) ucisprop(cc, UC_CF, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
149
#define ucissymbol(cc) ucisprop(cc, UC_SM|UC_SC|UC_SO|UC_SK, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
150
#define ucisnumber(cc) ucisprop(cc, UC_ND|UC_NO|UC_NL, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
151
#define ucisnonspacing(cc) ucisprop(cc, UC_MN, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
152
#define ucisopenpunct(cc) ucisprop(cc, UC_PS, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
153
#define ucisclosepunct(cc) ucisprop(cc, UC_PE, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
154
#define ucisinitialpunct(cc) ucisprop(cc, 0, UC_PI)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
155
#define ucisfinalpunct(cc) ucisprop(cc, 0, UC_PF)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
157
#define uciscomposite(cc) ucisprop(cc, 0, UC_CM)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
158
#define ucishex(cc) ucisprop(cc, 0, UC_HD)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
159
#define ucisquote(cc) ucisprop(cc, 0, UC_QM)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
160
#define ucissymmetric(cc) ucisprop(cc, 0, UC_SY)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
161
#define ucismirroring(cc) ucisprop(cc, 0, UC_MR)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
162
#define ucisnonbreaking(cc) ucisprop(cc, 0, UC_NB)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
167
#define ucisrtl(cc) ucisprop(cc, UC_R, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
168
#define ucisltr(cc) ucisprop(cc, UC_L, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
169
#define ucisstrong(cc) ucisprop(cc, UC_L|UC_R, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
170
#define ucisweak(cc) ucisprop(cc, UC_EN|UC_ES, UC_ET|UC_AN|UC_CS)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
171
#define ucisneutral(cc) ucisprop(cc, 0, UC_B|UC_S|UC_WS|UC_ON)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
172
#define ucisseparator(cc) ucisprop(cc, 0, UC_B|UC_S)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
177
#define ucismark(cc) ucisprop(cc, UC_MN|UC_MC|UC_ME, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
178
#define ucismodif(cc) ucisprop(cc, UC_LM, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
179
#define ucisletnum(cc) ucisprop(cc, UC_NL, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
180
#define ucisconnect(cc) ucisprop(cc, UC_PC, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
181
#define ucisdash(cc) ucisprop(cc, UC_PD, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
182
#define ucismath(cc) ucisprop(cc, UC_SM, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
183
#define uciscurrency(cc) ucisprop(cc, UC_SC, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
184
#define ucismodifsymbol(cc) ucisprop(cc, UC_SK, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
185
#define ucisnsmark(cc) ucisprop(cc, UC_MN, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
186
#define ucisspmark(cc) ucisprop(cc, UC_MC, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
187
#define ucisenclosing(cc) ucisprop(cc, UC_ME, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
188
#define ucisprivate(cc) ucisprop(cc, UC_CO, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
189
#define ucissurrogate(cc) ucisprop(cc, UC_OS, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
190
#define ucislsep(cc) ucisprop(cc, UC_ZL, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
191
#define ucispsep(cc) ucisprop(cc, UC_ZP, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
193
#define ucisidentstart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL, 0)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
194
#define ucisidentpart(cc) ucisprop(cc, UC_LU|UC_LL|UC_LT|UC_LO|UC_NL|\
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
197
#define ucisdefined(cc) ucisprop(cc, 0, UC_CP)
crypto/krb5/src/lib/krb5/unicode/ucdata/ucdata.h
198
#define ucisundefined(cc) !ucisprop(cc, 0, UC_CP)