Home | History | Annotate | Download | only in text

Lines Matching defs:MIXED_NUMBERS

173  * <li><code>MIXED_NUMBERS</code>: flags strings that contain digits from multiple different numbering systems.</li>
178 * INVISIBLE and MIXED_NUMBERS conditions, you could do:
183 * .setChecks(SpoofChecker.INVISIBLE | SpoofChecker.MIXED_NUMBERS)
409 public static final int MIXED_NUMBERS = 128;
549 * builder.setChecks(SpoofChecker.CHAR_LIMIT | SpoofChecker.MIXED_NUMBERS);
702 * {@link #MIXED_NUMBERS} checks, corresponding to Sections 5.1 and 5.2 of UTS 39. To customize which checks are
712 fChecks |= RESTRICTION_LEVEL | MIXED_NUMBERS;
1135 * The numerics found in the string, if MIXED_NUMBERS was set; otherwise null. The set will contain the zero
1186 if ((checks & MIXED_NUMBERS) != 0) {
1187 sb.append(" MIXED_NUMBERS");
1227 if (0 != (this.fChecks & MIXED_NUMBERS)) {
1231 result |= MIXED_NUMBERS;