Searched defs:getBits (Results 1 - 6 of 6) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DDocSetBase.java51 return this.getBits().equals(other.getBits());
71 * @see BitDocSet#getBits
73 public OpenBitSet getBits() { method in class:DocSetBase
89 OpenBitSet newbits = (OpenBitSet)(this.getBits().clone());
90 newbits.and(other.getBits());
95 OpenBitSet newbits = (OpenBitSet)(this.getBits().clone());
96 newbits.or(other.getBits());
115 OpenBitSet newbits = (OpenBitSet)(this.getBits().clone());
116 newbits.andNot(other.getBits());
[all...]
H A DBitDocSet.java117 public OpenBitSet getBits() { method in class:BitDocSet
209 return (bits.getBits().length << 3) + 16;
H A DDocSet.java91 public OpenBitSet getBits(); method in interface:DocSet
H A DSortedIntDocSet.java520 public OpenBitSet getBits() { method in class:SortedIntDocSet
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DFixedBitSet.java30 * ({@link #getBits}) long[], accessed with an int index,
80 public long[] getBits() { method in class:FixedBitSet
H A DOpenBitSet.java148 public long[] getBits() { return bits; } method in class:OpenBitSet

Completed in 69 milliseconds