/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/function/ |
H A D | OrdFieldSource.java | 45 * searching, if {@link #getValues} is invoked with a 69 /*(non-Javadoc) @see org.apache.lucene.search.function.ValueSource#getValues(org.apache.lucene.index.IndexReader) */ 71 public DocValues getValues(IndexReader reader) throws IOException { method in class:OrdFieldSource
|
H A D | ReverseOrdFieldSource.java | 46 * searching, if {@link #getValues} is invoked with a 70 /*(non-Javadoc) @see org.apache.lucene.search.function.ValueSource#getValues(org.apache.lucene.index.IndexReader) */ 72 public DocValues getValues(IndexReader reader) throws IOException { method in class:ReverseOrdFieldSource
|
H A D | ValueSource.java | 46 public abstract DocValues getValues(IndexReader reader) throws IOException; method in class:ValueSource
|
H A D | FieldCacheSource.java | 40 * searching, if {@link #getValues} is invoked with a 56 /* (non-Javadoc) @see org.apache.lucene.search.function.ValueSource#getValues(org.apache.lucene.index.IndexReader) */ 58 public final DocValues getValues(IndexReader reader) throws IOException { method in class:FieldCacheSource
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/schema/ |
H A D | StrFieldSource.java | 40 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:StrFieldSource
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/ |
H A D | ByteFieldSource.java | 51 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ByteFieldSource
|
H A D | DoubleFieldSource.java | 52 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:DoubleFieldSource
|
H A D | FloatFieldSource.java | 53 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:FloatFieldSource
|
H A D | IntFieldSource.java | 53 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:IntFieldSource
|
H A D | LiteralValueSource.java | 41 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LiteralValueSource
|
H A D | OrdFieldSource.java | 59 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:OrdFieldSource
|
H A D | ReverseOrdFieldSource.java | 62 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ReverseOrdFieldSource
|
H A D | ShortFieldSource.java | 48 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ShortFieldSource
|
H A D | SimpleFloatFunction.java | 35 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:SimpleFloatFunction 36 final DocValues vals = source.getValues(context, reader);
|
H A D | TopValueSource.java | 47 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:TopValueSource 59 final DocValues vals = vs.getValues(context, topReader);
|
H A D | ConstValueSource.java | 43 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ConstValueSource
|
H A D | LinearFloatFunction.java | 51 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LinearFloatFunction 52 final DocValues vals = source.getValues(context, reader);
|
H A D | LongFieldSource.java | 58 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LongFieldSource
|
H A D | MultiFloatFunction.java | 59 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:MultiFloatFunction 62 valsArr[i] = sources[i].getValues(context, reader);
|
H A D | ReciprocalFloatFunction.java | 61 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ReciprocalFloatFunction 62 final DocValues vals = source.getValues(context, reader);
|
H A D | ScaleFloatFunction.java | 54 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ScaleFloatFunction 55 final DocValues vals = source.getValues(context, reader);
|
H A D | VectorValueSource.java | 57 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:VectorValueSource 62 final DocValues x = sources.get(0).getValues(context, reader); 63 final DocValues y = sources.get(1).getValues(context, reader); 111 valsArr[i] = sources.get(i).getValues(context, reader);
|
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/response/ |
H A D | GroupResponse.java | 53 public List<GroupCommand> getValues() { method in class:GroupResponse
|
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/distance/ |
H A D | GeohashFunction.java | 49 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:GeohashFunction 50 final DocValues latDV = lat.getValues(context, reader); 51 final DocValues lonDV = lon.getValues(context, reader);
|
H A D | StringDistanceFunction.java | 51 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:StringDistanceFunction 52 final DocValues str1DV = str1.getValues(context, reader); 53 final DocValues str2DV = str2.getValues(context, reader);
|