Searched defs:or (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DFixedBitSet.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * Unless required by applicable law or agreed to in writing, software
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
160 /** Returns the index of the last set bit before or on the index specified.
185 public void or(DocIdSetIterator iter) throws IOException { method in class:FixedBitSet
188 or(obs.arr, obs.words);
201 public void or(FixedBitSet other) { method in class:FixedBitSet
202 or(other.bits, other.bits.length);
205 private void or(final long[] otherArr, final int otherLen) { method in class:FixedBitSet
H A DOpenBitSet.java2 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * Unless required by applicable law or agreed to in writing, software
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32 * alternate serialization or interchange formats.
161 /** Returns true or false for the specified bit index. */
174 /** Returns true or false for the specified bit index.
189 /** Returns true or false for the specified bit index
199 /** Returns true or false for the specified bit index.
327 // Could also use Long.rotateRight() or rotateLeft() *if* they were converted
573 /** Returns the popcount or cardinalit
812 public void or(OpenBitSet other) { method in class:OpenBitSet
[all...]

Completed in 17 milliseconds