Searched defs:writeDoc (Results 1 - 8 of 8) sorted by relevance

/lucene-3.6.0/solr/core/src/java/org/apache/solr/response/
H A DBaseResponseWriter.java97 responseWriter.writeDoc(solrDocument);
117 responseWriter.writeDoc(sdoc);
261 public void writeDoc(SolrDocument solrDocument) throws IOException { } method in class:BaseResponseWriter.SingleResponseWriter
307 * method forces calling {@link #writeDoc(SolrDocument)} on a doc-by-doc
310 * @return True to force {@link #writeDoc(SolrDocument)} to be called, False
H A DPHPSerializedResponseWriter.java83 public void writeDoc(String name, Collection<Fieldable> fields, Set<String> returnFields, Map pseudoFields) throws IOException { method in class:PHPSerializedWriter
170 writeDoc(null, doc, fields, (includeScore ? iterator.score() : 0.0f), includeScore);
H A DTextResponseWriter.java125 writeDoc(name, (Document)val, returnFields, 0.0f, false);
158 public abstract void writeDoc(String name, Document doc, Set<String> returnFields, float score, boolean includeScore) throws IOException; method in class:TextResponseWriter
H A DJSONResponseWriter.java323 public void writeDoc(String name, Collection<Fieldable> fields, Set<String> returnFields, Map pseudoFields) throws IOException { method in class:JSONWriter
454 public void writeDoc(String name, Document doc, Set<String> returnFields, float score, boolean includeScore) throws IOException { method in class:JSONWriter
460 writeDoc(name, doc.getFields(), returnFields, other);
508 writeDoc(null, doc, fields, (includeScore ? iterator.score() : 0.0f), includeScore);
H A DXMLWriter.java313 public final void writeDoc(String name, Document doc, Set<String> returnFields, float score, boolean includeScore) throws IOException { method in class:XMLWriter
407 final void writeDoc(String name, SolrDocument doc, Set<String> returnFields, boolean includeScore) throws IOException { method in class:XMLWriter
512 writeDoc(null, doc, fields, includeScore);
546 writeDoc(null, doc, fields, (includeScore ? iterator.score() : 0.0f), includeScore);
580 writeDoc(name, (Document)val, defaultFieldList, 0.0f, false);
H A DCSVResponseWriter.java352 public void writeDoc(String name, Document doc, Set<String> returnFields, float score, boolean includeScore) throws IOException { method in class:CSVWriter
458 writeDoc(null, doc, fields, (returnScore ? iterator.score() : 0.0f), returnScore);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/index/
H A DDocHelper.java229 public static SegmentInfo writeDoc(Random random, Directory dir, Document doc) throws IOException method in class:DocHelper
231 return writeDoc(random, dir, new MockAnalyzer(random, MockTokenizer.WHITESPACE, false), null, doc);
244 public static SegmentInfo writeDoc(Random random, Directory dir, Analyzer analyzer, Similarity similarity, Document doc) throws IOException { method in class:DocHelper
/lucene-3.6.0/lucene/backwards/src/test-framework/java/org/apache/lucene/index/
H A DDocHelper.java229 public static SegmentInfo writeDoc(Random random, Directory dir, Document doc) throws IOException method in class:DocHelper
231 return writeDoc(random, dir, new MockAnalyzer(random, MockTokenizer.WHITESPACE, false), null, doc);
244 public static SegmentInfo writeDoc(Random random, Directory dir, Analyzer analyzer, Similarity similarity, Document doc) throws IOException { method in class:DocHelper

Completed in 3789 milliseconds