Searched defs:results (Results 1 - 2 of 2) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearch.java49 final List<Hit> results = new ArrayList<Hit>(); field in class:Search
111 results.clear();
114 engine.results(0, nhits, results);
122 if (results.isEmpty()) {
127 System.out.println("Printing results 1 - " + nhits +" of "
129 for (Hit hit : results) {
136 System.out.println("Printed results 1 - " + nhits +" of "
149 engine.results(nhits, totalResults, results);
[all...]
H A DSearchEngine.java117 // internal structure to hold the results from lucene
318 * Get results , if no search was started before, no results are returned
320 * hence performance hit applies, if you want results in later pages than
325 * @param ret list of results from start to end or null/empty if no search
328 public void results(int start, int end, List<Hit> ret) { method in class:SearchEngine
348 logger.log(Level.FINE, "results", e);
358 logger.log(Level.FINE, "results", e);
365 // TODO generation of ret(results) could be cashed and consumers of
368 // usually smaller than number of results
[all...]

Completed in 30 milliseconds