Home | History | Annotate | Download | only in text

Lines Matching defs:CHAR_LIMIT

170  * <li><code>CHAR_LIMIT</code>: flags strings that contain characters outside of a specified set of acceptable
434 public static final int CHAR_LIMIT = 64;
478 * LOCALE_LIMIT and CHAR_LIMIT. Note that additional checks may be added in the future, resulting in the changes
592 * builder.setChecks(SpoofChecker.CHAR_LIMIT | SpoofChecker.MIXED_NUMBERS);
638 * The {@link #CHAR_LIMIT} test is automatically enabled for this SpoofChecker when calling this function with a
669 fChecks &= ~CHAR_LIMIT;
684 fChecks |= CHAR_LIMIT;
730 * The {@link #CHAR_LIMIT} test is automatically enabled for this SpoofChecker by this function.
742 fChecks |= CHAR_LIMIT;
1160 * @return A UnicodeSet containing the characters that are permitted by the CHAR_LIMIT test.
1175 * in question: RESTRICTION_LEVEL, CHAR_LIMIT, and so on.
1247 if ((checks & CHAR_LIMIT) != 0) {
1248 sb.append(" CHAR_LIMIT");
1303 if (0 != (this.fChecks & CHAR_LIMIT)) {
1311 result |= CHAR_LIMIT;