Searched defs:slot (Results 1 - 10 of 10) sorted by relevance

/lucene-3.6.0/solr/core/src/test/org/apache/solr/handler/admin/
H A DLukeRequestHandlerTest.java65 private void assertHistoBucket(int slot, int in) { argument
66 assertEquals("histobucket: " + in, slot, 32 - Integer.numberOfLeadingZeros(Math.max(0, in - 1)));
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/tier/
H A DDistanceFieldComparatorSource.java101 public void copy(int slot, int doc) { argument
102 values[slot] = distanceFilter.getDistance(doc + offset);
106 public void setBottom(int slot) { argument
107 this.bottom = values[slot];
120 public Double value(int slot) { argument
121 return values[slot];
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/
H A DFieldValueHitQueue.java37 public int slot; field in class:FieldValueHitQueue.Entry
39 public Entry(int slot, int doc, float score) { argument
41 this.slot = slot;
46 return "slot:" + slot + " " + super.toString();
83 assert hitA.slot != hitB.slot;
85 final int c = oneReverseMul * comparator.compare(hitA.slot, hitB.slot);
[all...]
H A DTopFieldCollector.java77 comparator.copy(bottom.slot, doc);
79 comparator.setBottom(bottom.slot);
82 final int slot = totalHits - 1;
84 comparator.copy(slot, doc);
85 add(slot, doc, Float.NaN);
87 comparator.setBottom(bottom.slot);
129 comparator.copy(bottom.slot, doc);
131 comparator.setBottom(bottom.slot);
134 final int slot = totalHits - 1;
136 comparator.copy(slot, do
957 add(int slot, int doc, float score) argument
[all...]
H A DFieldComparator.java43 * competitive, it's enrolled into a virtual slot, which is
53 * <li> {@link #compare} Compare a hit at 'slot a'
54 * with hit 'slot b'.
59 * slot. Note that this slot may not hold the weakest
78 * the specified slot. This is only called at the end
90 * @param slot1 first slot to compare
91 * @param slot2 second slot to compare
99 * Set the bottom slot, ie the "weakest" (sorted last)
101 * called, you should compare against this slot
106 setBottom(final int slot) argument
136 copy(int slot, int doc) argument
164 value(int slot) argument
241 copy(int slot, int doc) argument
265 value(int slot) argument
293 copy(int slot, int doc) argument
311 value(int slot) argument
361 copy(int slot, int doc) argument
385 value(int slot) argument
439 copy(int slot, int doc) argument
463 value(int slot) argument
521 copy(int slot, int doc) argument
545 value(int slot) argument
599 copy(int slot, int doc) argument
623 value(int slot) argument
657 copy(int slot, int doc) argument
683 value(int slot) argument
727 copy(int slot, int doc) argument
751 value(int slot) argument
802 copy(int slot, int doc) argument
817 value(int slot) argument
904 copy(int slot, int doc) argument
955 value(int slot) argument
1032 copy(int slot, int doc) argument
1047 value(int slot) argument
[all...]
/lucene-3.6.0/lucene/contrib/remote/src/test/org/apache/lucene/search/
H A DTestRemoteSort.java170 public void copy(int slot, int doc) { argument
171 slotValues[slot] = docValues[doc];
199 public Comparable<?> value(int slot) { argument
200 return Integer.valueOf(slotValues[slot]);
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/
H A DMissingStringLastComparatorSource.java139 private void convert(int slot) { argument
140 readerGen[slot] = currentReaderGen;
142 String value = values[slot];
145 // ords[slot] = NULL_ORD;
149 if (sortPos == 0 && bottomSlot != -1 && bottomSlot != slot) {
166 ords[slot] = index;
170 public void copy(int slot, int doc) { argument
172 ords[slot] = ord == 0 ? NULL_ORD : ord;
174 values[slot] = lookup[ord];
175 readerGen[slot]
204 value(int slot) argument
[all...]
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/
H A DValueSource.java179 public void copy(int slot, int doc) { argument
180 values[slot] = docVals.doubleVal(doc);
194 public Double value(int slot) { argument
195 return values[slot];
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java232 public void copy(int slot, int doc) throws IOException { argument
237 public void setBottom(int slot) { argument
248 public Object value(int slot) { argument
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/
H A DJustCompileSearch.java232 public void copy(int slot, int doc) throws IOException { argument
237 public void setBottom(int slot) { argument
248 public Object value(int slot) { argument

Completed in 358 milliseconds