Home | History | Annotate | Download | only in regression

Lines Matching refs:bs

27     private BitSet bs;
31 bs = new BitSet(size);
36 if (!bs.isEmpty()) throw new RuntimeException();
41 bs.set(bs.size() - 1);
43 if (bs.isEmpty()) throw new RuntimeException();
49 bs.get(i % size);
55 bs.clear(i % size);
61 bs.set(i % size);
67 bs.set(i % size, true);
73 bs.set(i % size, false);