Home | History | Annotate | Download | only in qt4

Lines Matching defs:U_MASK

104 #define U_MASK(x) ((uint32_t)1<<(x))
154 Mark_NonSpacing = U_MASK(QChar::Mark_NonSpacing),
155 Mark_SpacingCombining = U_MASK(QChar::Mark_SpacingCombining),
156 Mark_Enclosing = U_MASK(QChar::Mark_Enclosing),
157 Number_DecimalDigit = U_MASK(QChar::Number_DecimalDigit),
158 Number_Letter = U_MASK(QChar::Number_Letter),
159 Number_Other = U_MASK(QChar::Number_Other),
160 Separator_Space = U_MASK(QChar::Separator_Space),
161 Separator_Line = U_MASK(QChar::Separator_Line),
162 Separator_Paragraph = U_MASK(QChar::Separator_Paragraph),
163 Other_Control = U_MASK(QChar::Other_Control),
164 Other_Format = U_MASK(QChar::Other_Format),
165 Other_Surrogate = U_MASK(QChar::Other_Surrogate),
166 Other_PrivateUse = U_MASK(QChar::Other_PrivateUse),
167 Other_NotAssigned = U_MASK(QChar::Other_NotAssigned),
168 Letter_Uppercase = U_MASK(QChar::Letter_Uppercase),
169 Letter_Lowercase = U_MASK(QChar::Letter_Lowercase),
170 Letter_Titlecase = U_MASK(QChar::Letter_Titlecase),
171 Letter_Modifier = U_MASK(QChar::Letter_Modifier),
172 Letter_Other = U_MASK(QChar::Letter_Other),
173 Punctuation_Connector = U_MASK(QChar::Punctuation_Connector),
174 Punctuation_Dash = U_MASK(QChar::Punctuation_Dash),
175 Punctuation_Open = U_MASK(QChar::Punctuation_Open),
176 Punctuation_Close = U_MASK(QChar::Punctuation_Close),
177 Punctuation_InitialQuote = U_MASK(QChar::Punctuation_InitialQuote),
178 Punctuation_FinalQuote = U_MASK(QChar::Punctuation_FinalQuote),
179 Punctuation_Other = U_MASK(QChar::Punctuation_Other),
180 Symbol_Math = U_MASK(QChar::Symbol_Math),
181 Symbol_Currency = U_MASK(QChar::Symbol_Currency),
182 Symbol_Modifier = U_MASK(QChar::Symbol_Modifier),
183 Symbol_Other = U_MASK(QChar::Symbol_Other)
335 const uint test = U_MASK(QChar::Other_Control) |
336 U_MASK(QChar::Other_NotAssigned);
337 return !(U_MASK(QChar::category(c)) & test);
347 const uint test = U_MASK(QChar::Punctuation_Connector) |
348 U_MASK(QChar::Punctuation_Dash) |
349 U_MASK(QChar::Punctuation_Open) |
350 U_MASK(QChar::Punctuation_Close) |
351 U_MASK(QChar::Punctuation_InitialQuote) |
352 U_MASK(QChar::Punctuation_FinalQuote) |
353 U_MASK(QChar::Punctuation_Other);
354 return U_MASK(QChar::category(c)) & test;
402 return (CharCategory) U_MASK(QChar::category(c));