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