Searched defs:top (Results 1 - 14 of 14) sorted by relevance

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/search/
H A DHeap.java28 * Get and remove the top of the Heap <BR>
34 /** Get (But not remove) the top of the Heap */
35 public T top(); method in interface:Heap
44 * Add a new value to the heap, return the new top(). <br>
/lucene-3.6.0/solr/core/src/java/org/apache/solr/schema/
H A DBinaryField.java48 public SortField getSortField(SchemaField field, boolean top) { argument
H A DGeoHashField.java51 public SortField getSortField(SchemaField field, boolean top) { argument
52 return getStringSort(field, top);
H A DPointType.java132 public SortField getSortField(SchemaField field, boolean top) { argument
H A DTrieDateField.java52 public SortField getSortField(SchemaField field, boolean top) { argument
53 return wrappedField.getSortField(field, top);
H A DSchemaField.java142 public SortField getSortField(boolean top) { argument
143 return type.getSortField(this, top);
H A DTrieField.java125 public SortField getSortField(SchemaField field, boolean top) { argument
135 missingValue = top ? Integer.MIN_VALUE : Integer.MAX_VALUE;
138 missingValue = top ? Integer.MAX_VALUE : Integer.MIN_VALUE;
140 return new SortField( field.getName(), FieldCache.NUMERIC_UTILS_INT_PARSER, top).setMissingValue(missingValue);
144 missingValue = top ? Float.NEGATIVE_INFINITY : Float.POSITIVE_INFINITY;
147 missingValue = top ? Float.POSITIVE_INFINITY : Float.NEGATIVE_INFINITY;
149 return new SortField( field.getName(), FieldCache.NUMERIC_UTILS_FLOAT_PARSER, top).setMissingValue(missingValue);
154 missingValue = top ? Long.MIN_VALUE : Long.MAX_VALUE;
157 missingValue = top ? Long.MAX_VALUE : Long.MIN_VALUE;
159 return new SortField( field.getName(), FieldCache.NUMERIC_UTILS_LONG_PARSER, top)
[all...]
H A DFieldType.java514 public abstract SortField getSortField(SchemaField field, boolean top); argument
H A DLatLonType.java284 public SortField getSortField(SchemaField field, boolean top) { argument
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/util/
H A DResultSortUtils.java177 public FacetResultNode top() { method in class:ResultSortUtils.AllValueHeap
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DPriorityQueue.java44 * change the top without attempting to insert any new object.<br>
60 * // save the 'top' element, which is guaranteed to not be null.
61 * MyObject pqTop = pq.top();
63 * // now in order to add a new element, which is 'better' than top (after
89 // We allocate 1 extra to avoid if statement in top()
127 * @return the new 'top' element in the queue.
161 public final T top() { method in class:PriorityQueue
183 * Should be called when the Object at top changes values. Still log(n) worst
187 * pq.top().change();
199 * @return the new 'top' elemen
[all...]
H A DScorerDocQueue.java77 * the ScorerDocQueue is not full, or not lessThan(scorer, top()).
87 if ((size > 0) && (! (docNr < topHSD.doc))) { // heap[1] is top()
100 public final Scorer top() { method in class:ScorerDocQueue
160 /** Should be called when the scorer at top changes doc() value.
162 * { pq.top().change(); pq.adjustTop(); }
201 HeapedScorerDoc node = heap[i]; // save top node
/lucene-3.6.0/solr/client/ruby/flare/public/javascripts/
H A Deffects.js403 // relative element that does not have top/left explicitly set.
404 // ==> Always set top and left for position relative elements in your stylesheets
408 this.originalTop = parseFloat(this.element.getStyle('top') || '0');
418 top: Math.round(this.options.y * position + this.originalTop) + 'px'
450 ['top','left','width','height','fontSize'].each( function(k) {
493 if(this.options.scaleY) d.top = this.originalTop-topd + 'px';
496 if(this.options.scaleY) d.top = -topd + 'px';
598 top: element.style.top,
674 top
[all...]
/lucene-3.6.0/lucene/contrib/spatial/src/test/org/apache/lucene/spatial/tier/
H A DTestCartesian.java90 private void setUpPlotter(int base, int top) { argument
92 for (; base <= top; base ++){

Completed in 2717 milliseconds