Searched defs:fn (Results 1 - 7 of 7) sorted by relevance

/lucene-3.6.0/lucene/core/src/test/org/apache/lucene/search/payloads/
H A DTestPayloadExplanations.java52 private SpanQuery pt(String s, PayloadFunction fn, boolean includeSpanScore) { argument
53 return new PayloadTermQuery(new Term(FIELD,s), fn, includeSpanScore);
59 for (PayloadFunction fn : functions) {
60 qtest(pt("w1", fn, false), new int[] {0,1,2,3});
61 qtest(pt("w1", fn, true), new int[] {0,1,2,3});
66 for (PayloadFunction fn : functions) {
67 SpanQuery q = pt("w1", fn, false);
70 q = pt("w1", fn, true);
77 for (PayloadFunction fn : functions) {
78 qtest(pt("xx", fn, fals
[all...]
/lucene-3.6.0/lucene/backwards/src/test/org/apache/lucene/search/payloads/
H A DTestPayloadExplanations.java52 private SpanQuery pt(String s, PayloadFunction fn, boolean includeSpanScore) { argument
53 return new PayloadTermQuery(new Term(FIELD,s), fn, includeSpanScore);
59 for (PayloadFunction fn : functions) {
60 qtest(pt("w1", fn, false), new int[] {0,1,2,3});
61 qtest(pt("w1", fn, true), new int[] {0,1,2,3});
66 for (PayloadFunction fn : functions) {
67 SpanQuery q = pt("w1", fn, false);
70 q = pt("w1", fn, true);
77 for (PayloadFunction fn : functions) {
78 qtest(pt("xx", fn, fals
[all...]
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/surround/query/
H A DComposedQuery.java52 public List<Query> makeLuceneSubQueriesField(String fn, BasicQueryFactory qf) { argument
56 luceneSubQueries.add( ((SrndQuery) sqi.next()).makeLuceneQueryField(fn, qf));
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DEvaluatorBag.java194 static Map<String, Object> getFunctionsNamespace(final List<Map<String, String>> fn, DocBuilder docBuilder) { argument
201 for (Map<String, String> map : fn) {
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DFieldsWriter.java76 FieldsWriter(Directory directory, String segment, FieldInfos fn) throws IOException { argument
79 fieldInfos = fn;
97 FieldsWriter(IndexOutput fdx, IndexOutput fdt, FieldInfos fn) { argument
100 fieldInfos = fn;
H A DFieldsReader.java117 FieldsReader(Directory d, String segment, FieldInfos fn) throws IOException { argument
118 this(d, segment, fn, BufferedIndexInput.BUFFER_SIZE, -1, 0);
121 FieldsReader(Directory d, String segment, FieldInfos fn, int readBufferSize) throws IOException { argument
122 this(d, segment, fn, readBufferSize, -1, 0);
125 FieldsReader(Directory d, String segment, FieldInfos fn, int readBufferSize, int docStoreOffset, int size) throws IOException { argument
129 fieldInfos = fn;
H A DTermVectorsReader.java83 String fn = IndexFileNames.segmentFileName(segment, IndexFileNames.VECTORS_DOCUMENTS_EXTENSION);
84 tvd = d.openInput(fn, readBufferSize);
85 final int tvdFormat = checkValidFormat(fn, tvd);
86 fn = IndexFileNames.segmentFileName(segment, IndexFileNames.VECTORS_FIELDS_EXTENSION);
87 tvf = d.openInput(fn, readBufferSize);
88 final int tvfFormat = checkValidFormat(fn, tvf);
197 private int checkValidFormat(String fn, IndexInput in) throws CorruptIndexException, IOException argument

Completed in 22 milliseconds