Searched defs:skipTo (Results 1 - 25 of 27) sorted by relevance

12

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DCategoryListIterator.java31 * {@link #skipTo(int)}.
32 * <li>{@link #skipTo(int)} must be called before any calls to
44 * {@link #skipTo(int)}, and its return value indicates whether there are
46 * to {@link #skipTo(int)} will return false as well.<br>
60 public boolean skipTo(int docId) throws IOException; method in interface:CategoryListIterator
64 * {@link #skipTo(int)}, or a number higher than {@link Integer#MAX_VALUE}.
H A DPayloadIntDecodingIterator.java106 public boolean skipTo(int docId) throws IOException { method in class:PayloadIntDecodingIterator
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/util/
H A DMultiCategoryListIterator.java71 * Fails only if skipTo on all the provided iterators returned {@code false}
73 public boolean skipTo(int docId) throws IOException { method in class:MultiCategoryListIterator
76 if (cli.skipTo(docId)) {
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpans.java34 * boolean skipTo(int target) {
44 public abstract boolean skipTo(int target) throws IOException; method in class:Spans
H A DTermSpans.java63 public boolean skipTo(int target) throws IOException { method in class:TermSpans
64 if (!positions.skipTo(target)) {
H A DSpanPositionCheckQuery.java120 public boolean skipTo(int target) throws IOException { method in class:SpanPositionCheckQuery.PositionCheckSpan
121 if (!spans.skipTo(target))
136 if (!spans.skipTo(spans.doc()+1))
H A DNearSpansOrdered.java153 public boolean skipTo(int target) throws IOException { method in class:NearSpansOrdered
157 if (! subSpans[i].skipTo(target)) {
164 if (subSpans[0].skipTo(target)) {
197 if (! subSpansByDoc[firstIndex].skipTo(maxDoc)) {
H A DNearSpansUnordered.java88 public boolean skipTo(int target) throws IOException { method in class:NearSpansUnordered.SpansCell
89 return adjust(spans.skipTo(target));
178 more = first.skipTo(last.doc()); // skip first upto last
205 public boolean skipTo(int target) throws IOException { method in class:NearSpansUnordered
209 more = cell.skipTo(target); // skip all
217 if (min().skipTo(target)) {
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/
H A DInstantiatedTermPositions.java85 * boolean skipTo(int target) {
96 public boolean skipTo(int target) { method in class:InstantiatedTermPositions
98 return super.skipTo(target);
H A DInstantiatedTermDocs.java93 * boolean skipTo(int target) {
104 public boolean skipTo(int target) { method in class:InstantiatedTermDocs
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DAbstractAllTermDocs.java59 return skipTo(doc+1);
76 public boolean skipTo(int target) throws IOException { method in class:AbstractAllTermDocs
H A DTermDocs.java67 * boolean skipTo(int target) {
77 boolean skipTo(int target) throws IOException; method in interface:TermDocs
H A DSegmentTermDocs.java194 public boolean skipTo(int target) throws IOException { method in class:SegmentTermDocs
204 int newCount = skipListReader.skipTo(target);
H A DMultiLevelSkipListReader.java84 /** Returns the id of the doc to which the last call of {@link #skipTo(int)}
94 int skipTo(int target) throws IOException { method in class:MultiLevelSkipListReader
H A DMultipleTermPositions.java147 public final boolean skipTo(int target) throws IOException { method in class:MultipleTermPositions
150 if (tp.skipTo(target))
H A DFilterIndexReader.java57 public boolean skipTo(int i) throws IOException { return in.skipTo(i); } method in class:FilterIndexReader.FilterTermDocs
H A DParallelReader.java611 public boolean skipTo(int target) throws IOException { method in class:ParallelReader.ParallelTermDocs
615 return termDocs.skipTo(target);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/cache/
H A DCategoryListData.java73 if (cli.skipTo(doc)) {
126 public boolean skipTo(int docId) throws IOException { method in class:CategoryListData.RAMCategoryListIterator
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DPhrasePositions.java56 final boolean skipTo(int target) throws IOException { method in class:PhrasePositions
57 if (!tp.skipTo(target)) {
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/
H A DValueSourceScorer.java91 public boolean skipTo(int target) { method in class:ValueSourceScorer
H A DFunctionQuery.java190 public boolean skipTo(int target) throws IOException { method in class:FunctionQuery.AllScorer
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/spans/
H A DJustCompileSearchSpans.java56 public boolean skipTo(int target) throws IOException { method in class:JustCompileSearchSpans.JustCompileSpans
124 public boolean skipTo(int target) throws IOException { method in class:JustCompileSearchSpans.JustCompilePayloadSpans
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/spans/
H A DJustCompileSearchSpans.java56 public boolean skipTo(int target) throws IOException { method in class:JustCompileSearchSpans.JustCompileSpans
124 public boolean skipTo(int target) throws IOException { method in class:JustCompileSearchSpans.JustCompilePayloadSpans
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/facet/search/params/
H A DMultiIteratorsPerCLParamsTest.java263 public boolean skipTo(int docId) throws IOException { method in class:MultiIteratorsPerCLParamsTest.PerDimensionCLI
264 return superCLI.skipTo(docId);
/lucene-3.6.0/lucene/contrib/misc/src/java/org/apache/lucene/index/
H A DIndexSorter.java151 public boolean skipTo(int target) { method in class:IndexSorter.SortedTermPositions

Completed in 882 milliseconds

12