Searched defs:print (Results 1 - 3 of 3) sorted by relevance

/lucene-3.6.0/lucene/contrib/analyzers/stempel/src/java/org/egothor/stemmer/
H A DRow.java297 public void print() { method in class:Row
301 System.out.print("[" + ch + ":" + c + "]");
/lucene-3.6.0/solr/core/src/java/org/apache/solr/internal/csv/
H A DCSVPrinter.java39 * Create a printer that will print values to the given
45 * @param out stream to which to print.
79 print(values[i]);
125 public void print(char[] value, int offset, int len, boolean checkForEscape) throws IOException { method in class:CSVPrinter
282 public void print(String value, boolean checkForEscape) throws IOException { method in class:CSVPrinter
295 print(buf, 0, value.length(), checkForEscape);
304 public void print(String value) throws IOException { method in class:CSVPrinter
305 print(value, true);
/lucene-3.6.0/lucene/contrib/pruning/src/test/org/apache/lucene/index/
H A DTestPruningReader.java276 private void validateDocScores(Map<Term,ScoreDoc[]> baseScores, IndexReader in, boolean print, boolean onlyDocs) throws IOException { argument
277 validateDocScores(baseScores, in, new Term("body", "one"), print, onlyDocs);
278 validateDocScores(baseScores, in, new Term("body", "two"), print, onlyDocs);
279 validateDocScores(baseScores, in, new Term("body", "three"), print, onlyDocs);
280 validateDocScores(baseScores, in, new Term("test", "one"), print, onlyDocs);
281 validateDocScores(baseScores, in, new Term("allthesame", "allthesame"), print, onlyDocs);
284 /** validate the doc-scores, optionally also print them */
285 private void validateDocScores(Map<Term,ScoreDoc[]> baseScores, IndexReader in, Term term, boolean print, boolean onlyDocs) throws IOException { argument
286 if (print) {

Completed in 85 milliseconds