(int totalCharacters, int tableLength)
| 610 | } |
| 611 | |
| 612 | @GwtIncompatible // SmallCharMatcher |
| 613 | private static boolean isSmall(int totalCharacters, int tableLength) { |
| 614 | return totalCharacters <= SmallCharMatcher.MAX_SIZE |
| 615 | && tableLength > (totalCharacters * 4 * Character.SIZE); |
| 616 | // err on the side of BitSetMatcher |
| 617 | } |
| 618 | |
| 619 | /** |
| 620 | * Sets bits in {@code table} matched by this matcher. |