MCPcopy Create free account
hub / github.com/antlr/codebuff / setBits

Method setBits

output/java_guava/1.4.13/CharMatcher.java:621–628  ·  view source on GitHub ↗

Sets bits in table matched by this matcher.

(BitSet table)

Source from the content-addressed store, hash-verified

619 */
620
621 @GwtIncompatible // java.util.BitSet
622 void setBits(BitSet table) {
623 for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) {
624 if (matches((char) c)) {
625 table.set(c);
626 }
627 }
628 }
629
630 // Text processing routines
631

Callers 4

precomputedInternalMethod · 0.95
setBitsMethod · 0.45
setBitsMethod · 0.45
setBitsMethod · 0.45

Calls 2

matchesMethod · 0.95
setMethod · 0.65

Tested by

no test coverage detected