/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/ |
H A D | ScoredDocIDsIterator.java | 21 * Iterator over document IDs and their scores. Each {@link #next()} retrieves 22 * the next docID and its score which can be later be retrieved by 24 * {@link #next()} before {@link #getDocID()} and/or {@link #getScore()}, or 34 /** Iterate to the next document/score pair. Returns true iff there is such a pair. */ 35 public abstract boolean next(); method in interface:ScoredDocIDsIterator
|
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/ |
H A D | DoubleIterator.java | 28 double next(); method in interface:DoubleIterator
|
H A D | FloatIterator.java | 28 float next(); method in interface:FloatIterator
|
H A D | IntIterator.java | 28 int next(); method in interface:IntIterator
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/ |
H A D | TermEnum.java | 29 /** Increments the enumeration to the next element. True if one exists.*/ 30 public abstract boolean next() throws IOException; method in class:TermEnum
|
H A D | DocFieldProcessorPerField.java | 31 DocFieldProcessorPerField next; field in class:DocFieldProcessorPerField
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/ |
H A D | BytesRefIterator.java | 29 * Increments the iteration to the next {@link BytesRef} in the iterator. 32 * to next. After this method returns null, do not call it again: the results 35 * @return the next {@link BytesRef} in the iterator or <code>null</code> if 39 public BytesRef next() throws IOException; method in interface:BytesRefIterator 53 public BytesRef next() throws IOException {
|
H A D | SimpleStringInterner.java | 32 private Entry next; field in class:SimpleStringInterner.Entry 33 private Entry(String str, int hash, Entry next) { argument 36 this.next = next; 64 for(Entry e=first; e!=null; e=e.next) { 71 if (e.next != null) { 81 nextToLast.next = null;
|
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/util/ |
H A D | TestRamUsageEstimatorOnWildAnimals.java | 27 ListElement next; field in class:TestRamUsageEstimatorOnWildAnimals.ListElement 41 last = (last.next = new ListElement());
|
H A D | StressRamUsageEstimator.java | 38 Entry next; field in class:StressRamUsageEstimator.Entry 43 e.next = next; 44 this.next = e;
|
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/ |
H A D | SmartRandom.java | 34 protected int next(int bits) { method in class:SmartRandom 41 return super.next(bits);
|
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/util/ |
H A D | SmartRandom.java | 34 protected int next(int bits) { method in class:SmartRandom 41 return super.next(bits);
|
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/index/attributes/ |
H A D | CategoryAttributesIterable.java | 58 public CategoryAttribute next() { method in class:CategoryAttributesIterable.CategoryAttributesIterator 60 .next());
|
/lucene-3.6.0/lucene/contrib/instantiated/src/java/org/apache/lucene/store/instantiated/ |
H A D | InstantiatedTermEnum.java | 37 next(); 44 * Increments the enumeration to the next element. True if one exists. 47 public boolean next() { method in class:InstantiatedTermEnum
|
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/spell/ |
H A D | PlainTextDictionary.java | 64 public BytesRef next() throws IOException { method in class:PlainTextDictionary.FileIterator
|
H A D | TermFreqIterator.java | 48 public BytesRef next() throws IOException { method in class:TermFreqIterator.TermFreqIteratorWrapper 49 return wrapped.next();
|
/lucene-3.6.0/lucene/contrib/spellchecker/src/java/org/apache/lucene/search/suggest/ |
H A D | BufferingTermFreqIteratorWrapper.java | 41 while((spare = source.next()) != null) { 56 public BytesRef next() throws IOException { method in class:BufferingTermFreqIteratorWrapper
|
H A D | UnsortedTermFreqIteratorWrapper.java | 57 public BytesRef next() throws IOException { method in class:UnsortedTermFreqIteratorWrapper
|
/lucene-3.6.0/lucene/contrib/spellchecker/src/test/org/apache/lucene/search/suggest/ |
H A D | TermFreqArrayIterator.java | 53 public BytesRef next() throws IOException { method in class:TermFreqArrayIterator 55 current = i.next();
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/ |
H A D | FilteredTermEnum.java | 56 else next(); 70 /** Increments the enumeration to the next element. True if one exists. */ 72 public boolean next() throws IOException { method in class:FilteredTermEnum 77 if (actualEnum.next()) {
|
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/spans/ |
H A D | Spans.java | 28 /** Move to the next match, returning true iff any such exists. */ 29 public abstract boolean next() throws IOException; method in class:Spans 36 * if (!next()) 57 * This is invalid until {@link #next()} is called for 60 * of {@link #next()}. However, most payloads are loaded lazily, 81 * {@link #next()}.
|
/lucene-3.6.0/solr/contrib/langid/src/java/org/apache/solr/update/processor/ |
H A D | LangDetectLanguageIdentifierUpdateProcessor.java | 41 SolrQueryResponse rsp, UpdateRequestProcessor next) { 42 super(req, rsp, next); 40 LangDetectLanguageIdentifierUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
|
H A D | TikaLanguageIdentifierUpdateProcessor.java | 38 SolrQueryResponse rsp, UpdateRequestProcessor next) { 39 super(req, rsp, next); 37 TikaLanguageIdentifierUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
|
H A D | TikaLanguageIdentifierUpdateProcessorFactory.java | 84 SolrQueryResponse rsp, UpdateRequestProcessor next) { 89 return new TikaLanguageIdentifierUpdateProcessor(req, rsp, next); 83 getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
|
/lucene-3.6.0/solr/contrib/uima/src/java/org/apache/solr/uima/processor/ |
H A D | UIMAUpdateRequestProcessorFactory.java | 43 UpdateRequestProcessor next) { 44 return new UIMAUpdateRequestProcessor(next, req.getCore(), 42 getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) argument
|