Searched defs:docID (Results 1 - 25 of 51) sorted by relevance

123

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFormatPostingsDocsConsumer.java30 abstract FormatPostingsPositionsConsumer addDoc(int docID, int termDocFreq) throws IOException; argument
H A DBufferedDeletes.java30 /* Holds buffered deletes, by docID, term or query for a
110 public void addDocID(int docID) { argument
111 docIDs.add(Integer.valueOf(docID));
122 // higher docID is scheduled before the other
H A DFormatPostingsDocsWriter.java79 FormatPostingsPositionsConsumer addDoc(int docID, int termDocFreq) throws IOException { argument
81 final int delta = docID - lastDocID;
83 if (docID < 0 || (df > 0 && delta <= 0))
84 throw new CorruptIndexException("docs out of order (" + docID + " <= " + lastDocID + " ) (out: " + out + ")");
92 assert docID < totalNumDocs: "docID=" + docID + " totalNumDocs=" + totalNumDocs;
94 lastDocID = docID;
H A DFreqProxFieldMergeState.java48 int docID; field in class:FreqProxFieldMergeState
65 docID = 0;
94 docID = postings.lastDocIDs[currentTermID];
106 docID += code;
108 docID += code >>> 1;
115 assert docID != postings.lastDocIDs[currentTermID];
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DDocIdSetIterator.java33 * {@link #docID()} it means there are no more docs in the iterator.
49 public abstract int docID(); method in class:DocIdSetIterator
83 * not to advance beyond their current {@link #docID()}.
H A DConjunctionScorer.java59 return o1.docID() - o2.docID();
96 int doc = scorers[scorers.length - 1].docID();
98 while ((firstScorer = scorers[first]).docID() < doc) {
109 } else if (scorers[(scorers.length - 1)].docID() < target) {
116 public int docID() { method in class:ConjunctionScorer
125 return lastDoc = scorers[scorers.length - 1].docID();
H A DFilteredDocIdSetIterator.java53 public int docID() { method in class:FilteredDocIdSetIterator
H A DReqExclScorer.java72 int exclDoc = exclDisi.docID();
73 int reqDoc = reqScorer.docID(); // may be excluded
93 public int docID() { method in class:ReqExclScorer
H A DReqOptSumScorer.java57 public int docID() { method in class:ReqOptSumScorer
58 return reqScorer.docID();
68 int curDoc = reqScorer.docID();
74 int optScorerDoc = optScorer.docID();
H A DScoreCachingWrappingScorer.java57 int doc = scorer.docID();
67 public int docID() { method in class:ScoreCachingWrappingScorer
68 return scorer.docID();
H A DDisjunctionMaxScorer.java73 while (subScorers[0].docID() == doc) {
84 return doc = subScorers[0].docID();
88 public int docID() { method in class:DisjunctionMaxScorer
97 int doc = subScorers[0].docID();
107 if (root < size && subScorers[root].docID() == doc) {
119 while (subScorers[0].docID() < target) {
129 return doc = subScorers[0].docID();
144 int doc = scorer.docID();
149 int ldoc = lscorer.docID();
154 rdoc = rscorer.docID();
[all...]
H A DDisjunctionSumScorer.java198 public int docID() { method in class:DisjunctionSumScorer
H A DPhraseScorer.java66 public int docID() { method in class:PhraseScorer
77 max.doc = NO_MORE_DOCS; // for further calls to docID()
H A DTermScorer.java94 public int docID() { return doc; } method in class:TermScorer
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DDocIdBitSet.java62 public int docID() { method in class:DocIdBitSet.DocIdBitSetIterator
H A DOpenBitSetIterator.java189 public int docID() { method in class:OpenBitSetIterator
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DTestPositiveScoresOnlyCollector.java41 @Override public int docID() { return idx; } method in class:TestPositiveScoresOnlyCollector.SimpleScorer
H A DTestCachingCollector.java39 public int docID() { return 0; } method in class:TestCachingCollector.MockScorer
H A DTestScoreCachingWrappingScorer.java43 @Override public int docID() { return doc; } method in class:TestScoreCachingWrappingScorer.SimpleScorer
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DTestPositiveScoresOnlyCollector.java41 @Override public int docID() { return idx; } method in class:TestPositiveScoresOnlyCollector.SimpleScorer
H A DTestCachingCollector.java39 public int docID() { return 0; } method in class:TestCachingCollector.MockScorer
H A DTestScoreCachingWrappingScorer.java43 @Override public int docID() { return doc; } method in class:TestScoreCachingWrappingScorer.SimpleScorer
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/
H A DSingleDocSource.java27 private int docID = 0; field in class:SingleDocSource
47 if (docID > 0 && !forever) {
50 return docID++;
69 docID = 0;
/lucene-3.6.0/lucene/contrib/facet/src/test/org/apache/lucene/util/encoding/
H A DEncodingSpeed.java59 private static void testFacetIDs(int[] facetIDs, int docID) argument
65 + " Integers compression time by\nEncoding/decoding facets' ID payload of docID = "
66 + docID + " (unsorted, length of: " + facetIDs.length
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/
H A DSpanScorer.java91 public int docID() { return doc; } method in class:SpanScorer

Completed in 28 milliseconds

123