Searched defs:BitSet (Results 1 - 4 of 4) sorted by relevance

/external/icu4c/test/perf/usetperf/
H A Dbitset.h14 * A simple, limited clone of the java.util.BitSet.
16 class BitSet { class
25 BitSet();
26 ~BitSet();
H A Dbitset.cpp20 BitSet::BitSet() { function in class:BitSet
26 BitSet::~BitSet() {
30 UBool BitSet::get(int32_t bitIndex) const {
37 void BitSet::set(int32_t bitIndex) {
46 void BitSet::clearAll() {
50 void BitSet::ensureCapacity(uint32_t minLen) {
/external/icu4c/test/perf/unisetperf/draft/
H A Dbitset.cpp84 class BitSet : public UObject, public UnicodeContainable { class in inherits:UObject,UnicodeContainable
86 BitSet(const UnicodeSet &set, UErrorCode &errorCode) : bits(shortBits), restSet(set.clone()) { function in class:BitSet
172 ~BitSet() {
/external/antlr/src/org/antlr/runtime/
H A DBitSet.java32 /**A stripped-down version of org.antlr.misc.BitSet that is just
36 public class BitSet implements Cloneable { class in inherits:Cloneable
51 public BitSet() { method in class:BitSet
56 public BitSet(long[] bits_) { method in class:BitSet
61 public BitSet(List items) { method in class:BitSet
72 public BitSet(int nbits) { method in class:BitSet
76 public static BitSet of(int el) {
77 BitSet s = new BitSet(el + 1);
82 public static BitSet o
[all...]

Completed in 251 milliseconds