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

Method setBits

corpus/java/training/guava/base/CharMatcher.java:555–562  ·  view source on GitHub ↗

Sets bits in table matched by this matcher.

(BitSet table)

Source from the content-addressed store, hash-verified

553 * Sets bits in {@code table} matched by this matcher.
554 */
555 @GwtIncompatible // java.util.BitSet
556 void setBits(BitSet table) {
557 for (int c = Character.MAX_VALUE; c >= Character.MIN_VALUE; c--) {
558 if (matches((char) c)) {
559 table.set(c);
560 }
561 }
562 }
563
564 // Text processing routines
565

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