Searched defs:getValues (Results 1 - 25 of 55) sorted by relevance

123

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/search/function/
H A DOrdFieldSource.java45 * 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 DReverseOrdFieldSource.java46 * 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 DValueSource.java46 public abstract DocValues getValues(IndexReader reader) throws IOException; method in class:ValueSource
H A DFieldCacheSource.java40 * 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 DStrFieldSource.java40 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 DByteFieldSource.java51 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ByteFieldSource
H A DDoubleFieldSource.java52 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:DoubleFieldSource
H A DFloatFieldSource.java53 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:FloatFieldSource
H A DIntFieldSource.java53 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:IntFieldSource
H A DLiteralValueSource.java41 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LiteralValueSource
H A DOrdFieldSource.java59 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:OrdFieldSource
H A DReverseOrdFieldSource.java62 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ReverseOrdFieldSource
H A DShortFieldSource.java48 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ShortFieldSource
H A DSimpleFloatFunction.java35 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:SimpleFloatFunction
36 final DocValues vals = source.getValues(context, reader);
H A DTopValueSource.java47 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:TopValueSource
59 final DocValues vals = vs.getValues(context, topReader);
H A DConstValueSource.java43 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ConstValueSource
H A DLinearFloatFunction.java51 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LinearFloatFunction
52 final DocValues vals = source.getValues(context, reader);
H A DLongFieldSource.java58 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:LongFieldSource
H A DMultiFloatFunction.java59 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:MultiFloatFunction
62 valsArr[i] = sources[i].getValues(context, reader);
H A DReciprocalFloatFunction.java61 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ReciprocalFloatFunction
62 final DocValues vals = source.getValues(context, reader);
H A DScaleFloatFunction.java54 public DocValues getValues(Map context, IndexReader reader) throws IOException { method in class:ScaleFloatFunction
55 final DocValues vals = source.getValues(context, reader);
H A DVectorValueSource.java57 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 DGroupResponse.java53 public List<GroupCommand> getValues() { method in class:GroupResponse
/lucene-3.6.0/solr/core/src/java/org/apache/solr/search/function/distance/
H A DGeohashFunction.java49 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 DStringDistanceFunction.java51 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);

Completed in 95 milliseconds

123