Searched refs:next (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/lucene-3.6.0/solr/core/src/java/org/apache/solr/update/processor/
H A DUpdateRequestProcessor.java39 * By default, this just passes the request to the next processor in the chain.
46 protected final UpdateRequestProcessor next; field in class:UpdateRequestProcessor
48 public UpdateRequestProcessor( UpdateRequestProcessor next) { argument
49 this.next = next;
53 if (next != null) next.processAdd(cmd);
57 if (next != null) next.processDelete(cmd);
61 if (next !
[all...]
H A DLogUpdateProcessorFactory.java40 * will be logged for each command prior to the next stage in the chain.
59 public UpdateRequestProcessor getInstance(SolrQueryRequest req, SolrQueryResponse rsp, UpdateRequestProcessor next) { argument
65 final LogUpdateProcessor processor = new LogUpdateProcessor(req, rsp, this, next);
89 public LogUpdateProcessor(SolrQueryRequest req, SolrQueryResponse rsp, LogUpdateProcessorFactory factory, UpdateRequestProcessor next) { argument
90 super( next );
115 if (next != null) next.processAdd(cmd);
137 if (next != null) next.processDelete(cmd);
145 if (next !
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/util/collections/
H A DDoubleIterator.java28 double next(); method in interface:DoubleIterator
H A DFloatIterator.java28 float next(); method in interface:FloatIterator
H A DIntIterator.java28 int next(); method in interface:IntIterator
H A DArrayHashMap.java48 /** The next not-yet-visited index. */
72 public int next() { method in class:ArrayHashMap.IndexIterator
76 // next the index
77 index = next[index];
79 // if the next index points to the 'Ground' it means we're done with
80 // the current hash entry and we need to jump to the next one. This
107 public K next() { method in class:ArrayHashMap.KeyIterator
108 return (K) keys[iterator.next()];
127 public V next() { method in class:ArrayHashMap.ValueIterator
128 return (V) values[iterator.next()];
170 int[] next; field in class:ArrayHashMap
[all...]
H A DFloatToObjectMap.java53 * The next not-yet-visited index.
80 public int next() { method in class:FloatToObjectMap.IndexIterator
84 // next the index
85 index = next[index];
87 // if the next index points to the 'Ground' it means we're done with
88 // the current hash entry and we need to jump to the next one. This
115 public float next() { method in class:FloatToObjectMap.KeyIterator
116 return keys[iterator.next()];
138 public T next() { method in class:FloatToObjectMap.ValueIterator
139 return (T) values[iterator.next()];
186 int[] next; field in class:FloatToObjectMap
[all...]
H A DIntToDoubleMap.java52 * The next not-yet-visited index.
79 public int next() { method in class:IntToDoubleMap.IndexIterator
83 // next the index
84 index = next[index];
86 // if the next index points to the 'Ground' it means we're done with
87 // the current hash entry and we need to jump to the next one. This
114 public int next() { method in class:IntToDoubleMap.KeyIterator
115 return keys[iterator.next()];
136 public double next() { method in class:IntToDoubleMap.ValueIterator
137 return values[iterator.next()];
184 int[] next; field in class:IntToDoubleMap
[all...]
H A DIntToIntMap.java51 * The next not-yet-visited index.
78 public int next() { method in class:IntToIntMap.IndexIterator
82 // next the index
83 index = next[index];
85 // if the next index points to the 'Ground' it means we're done with
86 // the current hash entry and we need to jump to the next one. This
113 public int next() { method in class:IntToIntMap.KeyIterator
114 return keys[iterator.next()];
134 public int next() { method in class:IntToIntMap.ValueIterator
135 return values[iterator.next()];
182 int[] next; field in class:IntToIntMap
[all...]
H A DIntToObjectMap.java52 * The next not-yet-visited index.
79 public int next() { method in class:IntToObjectMap.IndexIterator
83 // next the index
84 index = next[index];
86 // if the next index points to the 'Ground' it means we're done with
87 // the current hash entry and we need to jump to the next one. This
114 public int next() { method in class:IntToObjectMap.KeyIterator
115 return keys[iterator.next()];
137 public T next() { method in class:IntToObjectMap.ValueIterator
138 return (T) values[iterator.next()];
185 int[] next; field in class:IntToObjectMap
[all...]
H A DObjectToFloatMap.java52 * The next not-yet-visited index.
79 public int next() { method in class:ObjectToFloatMap.IndexIterator
83 // next the index
84 index = next[index];
86 // if the next index points to the 'Ground' it means we're done with
87 // the current hash entry and we need to jump to the next one. This
116 public K next() { method in class:ObjectToFloatMap.KeyIterator
117 return (K) keys[iterator.next()];
138 public float next() { method in class:ObjectToFloatMap.ValueIterator
139 return values[iterator.next()];
186 int[] next; field in class:ObjectToFloatMap
[all...]
H A DObjectToIntMap.java52 * The next not-yet-visited index.
79 public int next() { method in class:ObjectToIntMap.IndexIterator
83 // next the index
84 index = next[index];
86 // if the next index points to the 'Ground' it means we're done with
87 // the current hash entry and we need to jump to the next one. This
116 public K next() { method in class:ObjectToIntMap.KeyIterator
117 return (K) keys[iterator.next()];
138 public int next() { method in class:ObjectToIntMap.ValueIterator
139 return values[iterator.next()];
186 int[] next; field in class:ObjectToIntMap
[all...]
H A DIntHashSet.java44 * The next not-yet-visited index.
71 public int next() { method in class:IntHashSet.IndexIterator
75 // next the index
76 index = next[index];
78 // if the next index points to the 'Ground' it means we're done with
79 // the current hash entry and we need to jump to the next one. This
106 public int next() { method in class:IntHashSet.KeyIterator
107 return keys[iterator.next()];
152 * hash's with the following next[] and prev[]. Those are also used to store
155 int[] next; field in class:IntHashSet
[all...]
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/index/
H A DTestParallelTermEnum.java87 assertTrue(te.next());
90 assertTrue(td.next());
92 assertFalse(td.next());
93 assertTrue(te.next());
96 assertTrue(td.next());
98 assertFalse(td.next());
99 assertTrue(te.next());
102 assertTrue(td.next());
104 assertFalse(td.next());
105 assertTrue(te.next());
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/index/
H A DTestParallelTermEnum.java86 assertTrue(te.next());
89 assertTrue(td.next());
91 assertFalse(td.next());
92 assertTrue(te.next());
95 assertTrue(td.next());
97 assertFalse(td.next());
98 assertTrue(te.next());
101 assertTrue(td.next());
103 assertFalse(td.next());
104 assertTrue(te.next());
[all...]
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/utils/
H A DStringBuilderReader.java28 * inner char[] allocations at the next append() attempt).<br>
56 // The next position to read from the StringBuilder.
57 private int next = 0; field in class:StringBuilderReader
98 mark = next;
111 return next >= length ? -1 : sb.charAt(next++);
129 if (next >= length) {
133 int n = Math.min(length - next, len);
134 sb.getChars(next, next
[all...]
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DScoredDocIDsIterator.java21 * 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/facet/util/
H A DScoredDocIdsUtils.java106 while (it.next() && n < docids.length) {
127 private int next = -1;
131 while (next < size && docids[next++] < target) {
133 return next == size ? NO_MORE_DOCS : docids[next];
138 return docids[next];
143 if (++next >= size) {
146 return docids[next];
157 int next
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DBytesRefIterator.java29 * 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 DSimpleStringInterner.java32 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/test-framework/src/java/org/apache/lucene/util/
H A DSmartRandom.java34 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 DSmartRandom.java34 protected int next(int bits) { method in class:SmartRandom
41 return super.next(bits);
/lucene-3.6.0/lucene/contrib/icu/src/java/org/apache/lucene/analysis/icu/segmentation/
H A DCompositeBreakIterator.java53 * Retrieve the next break position. If the RBBI range is exhausted within the
54 * script boundary, examine the next script boundary.
56 * @return the next break position or BreakIterator.DONE
58 int next() { method in class:CompositeBreakIterator
59 int next = rbbi.next();
60 while (next == BreakIterator.DONE && scriptIterator.next()) {
64 next = rbbi.next();
[all...]
H A DBreakIteratorWrapper.java49 abstract int next(); method in class:BreakIteratorWrapper
99 int next() { method in class:BreakIteratorWrapper.RBBIWrapper
100 return rbbi.next();
135 int next() { method in class:BreakIteratorWrapper.BIWrapper
137 int next = bi.next();
138 status = calcStatus(current, next);
139 return next;
142 private int calcStatus(int current, int next) { argument
143 if (current == BreakIterator.DONE || next
[all...]
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DTermEnum.java29 /** Increments the enumeration to the next element. True if one exists.*/
30 public abstract boolean next() throws IOException; method in class:TermEnum

Completed in 75 milliseconds

1234567891011>>