Searched refs:innerArray (Results 1 - 6 of 6) sorted by relevance
/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/function/ |
H A D | TestDocValues.java | 30 float[] innerArray = new float[] { 1.0f, 2.0f, -1.0f, 100.0f }; 31 DocValuesTestImpl docValues = new DocValuesTestImpl(innerArray); 36 innerArray = new float[] {}; 37 docValues = new DocValuesTestImpl(innerArray); 43 float[] innerArray = new float[] { 1.0f, 2.0f, -1.0f, 10.0f }; 44 DocValuesTestImpl docValues = new DocValuesTestImpl(innerArray); 48 innerArray = new float[] { -3.0f, -1.0f, -100.0f }; 49 docValues = new DocValuesTestImpl(innerArray); 53 innerArray = new float[] { -3.0f, -1.0f, 100.0f, Float.MAX_VALUE, 55 docValues = new DocValuesTestImpl(innerArray); 89 float[] innerArray; field in class:TestDocValues.DocValuesTestImpl 91 DocValuesTestImpl(float[] innerArray) argument [all...] |
H A D | TestFieldScoreQuery.java | 182 Object[] innerArray = new Object[s.getIndexReader().getSequentialSubReaders().length]; 194 innerArray[j] = q.valSrc.getValues(reader).getInnerArray(); 195 log(i + ". compare: " + innerArray[j].getClass() + " to " 199 innerArray[j].getClass(), expectedArrayTypes.get(tp).getClass()); 201 log(i + ". compare: " + innerArray[j] + " to " 203 assertSame("field values should be cached and reused!", innerArray[j], 225 log("compare: " + innerArray + " to " 229 innerArray, q.valSrc.getValues(reader).getInnerArray());
|
H A D | TestOrdValues.java | 157 Object innerArray = null; 176 innerArray = q.valSrc.getValues(reader).getInnerArray(); 178 log(i + ". compare: " + innerArray + " to " + q.valSrc.getValues(reader).getInnerArray()); 179 assertSame("field values should be cached and reused!", innerArray, q.valSrc.getValues(reader).getInnerArray()); 209 log("compare (should differ): " + innerArray + " to " 213 innerArray, q.valSrc.getValues(reader).getInnerArray()); 237 log("compare (should differ): " + innerArray + " to " 241 innerArray, q.valSrc.getValues(reader).getInnerArray());
|
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/function/ |
H A D | TestDocValues.java | 30 float[] innerArray = new float[] { 1.0f, 2.0f, -1.0f, 100.0f }; 31 DocValuesTestImpl docValues = new DocValuesTestImpl(innerArray); 36 innerArray = new float[] {}; 37 docValues = new DocValuesTestImpl(innerArray); 43 float[] innerArray = new float[] { 1.0f, 2.0f, -1.0f, 10.0f }; 44 DocValuesTestImpl docValues = new DocValuesTestImpl(innerArray); 48 innerArray = new float[] { -3.0f, -1.0f, -100.0f }; 49 docValues = new DocValuesTestImpl(innerArray); 53 innerArray = new float[] { -3.0f, -1.0f, 100.0f, Float.MAX_VALUE, 55 docValues = new DocValuesTestImpl(innerArray); 89 float[] innerArray; field in class:TestDocValues.DocValuesTestImpl 91 DocValuesTestImpl(float[] innerArray) argument [all...] |
H A D | TestFieldScoreQuery.java | 182 Object[] innerArray = new Object[s.getIndexReader().getSequentialSubReaders().length]; 194 innerArray[j] = q.valSrc.getValues(reader).getInnerArray(); 195 log(i + ". compare: " + innerArray[j].getClass() + " to " 199 innerArray[j].getClass(), expectedArrayTypes.get(tp).getClass()); 201 log(i + ". compare: " + innerArray[j] + " to " 203 assertSame("field values should be cached and reused!", innerArray[j], 225 log("compare: " + innerArray + " to " 229 innerArray, q.valSrc.getValues(reader).getInnerArray());
|
H A D | TestOrdValues.java | 157 Object innerArray = null; 176 innerArray = q.valSrc.getValues(reader).getInnerArray(); 178 log(i + ". compare: " + innerArray + " to " + q.valSrc.getValues(reader).getInnerArray()); 179 assertSame("field values should be cached and reused!", innerArray, q.valSrc.getValues(reader).getInnerArray()); 209 log("compare (should differ): " + innerArray + " to " 213 innerArray, q.valSrc.getValues(reader).getInnerArray()); 237 log("compare (should differ): " + innerArray + " to " 241 innerArray, q.valSrc.getValues(reader).getInnerArray());
|
Completed in 44 milliseconds