Searched defs:vs (Results 1 - 4 of 4) sorted by relevance
| /lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/ |
| H A D | TopValueSource.java | 31 private final ValueSource vs; field in class:TopValueSource 33 public TopValueSource(ValueSource vs) { argument 34 this.vs = vs; 38 return vs; 43 return "top(" + vs.description() + ')'; 59 final DocValues vals = vs.getValues(context, topReader); 99 return vs.equals(other.vs); 104 int h = vs [all...] |
| H A D | StringIndexDocValues.java | 32 protected final ValueSource vs; field in class:StringIndexDocValues 34 public StringIndexDocValues(ValueSource vs, IndexReader reader, String field) throws IOException { argument 42 this.vs = vs; 87 return vs.description() + '=' + strVal(doc);
|
| H A D | BoostedQuery.java | 140 Scorer scorer, ValueSource vs) throws IOException { 147 this.vals = vs.getValues(weight.context, reader); 139 CustomScorer(Similarity similarity, Searcher searcher, IndexReader reader, BoostedQuery.BoostedWeight w, Scorer scorer, ValueSource vs) argument
|
| /lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/distance/ |
| H A D | HaversineConstFunction.java | 58 ValueSource vs = sources.get(0); 59 if (!(vs instanceof MultiValueSource)) { 62 mv1 = (MultiValueSource)vs; 147 private static double[] getConstants(MultiValueSource vs) { argument 148 if (!(vs instanceof VectorValueSource)) return null; 149 List<ValueSource> sources = ((VectorValueSource)vs).getSources(); 160 ValueSource vs = sf.getType().getValueSource(sf, fp); 161 if (!(vs instanceof MultiValueSource)) { 164 return (MultiValueSource)vs; 180 public HaversineConstFunction(double latCenter, double lonCenter, VectorValueSource vs) { argument [all...] |
Completed in 75 milliseconds