Home | History | Annotate | Download | only in expr

Lines Matching defs:bitSet

37 import java.util.BitSet;
150 final BitSet shouldReadFlags = first.getShouldReadFlags();
839 BitSet bitset = new BitSet();
841 bitset.set(flag);
843 assertEquals("flag test for " + a.getUniqueKey(), bitset, a.getShouldReadFlags());
847 BitSet bitSet = a.getShouldReadFlags();
849 BitSet clone = (BitSet) bitSet.clone();
855 BitSet composite = new BitSet();
859 assertEquals("composite flags should match", composite, bitSet);