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

Method setBits

output/java_guava/1.4.17/CharMatcher.java:623–630  ·  view source on GitHub ↗

Sets bits in table matched by this matcher.

(BitSet table)

Source from the content-addressed store, hash-verified

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

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