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

/opengrok/src/org/opensolaris/opengrok/search/
H A DSearch.java51 final List<Hit> results = new ArrayList<>(); field in class:Search
116 results.clear();
119 engine.results(0, nhits, results);
128 if (results.isEmpty()) {
132 System.out.println("Printing results 1 - " + nhits +" of " + totalResults + " total matching documents collected.");
133 for (Hit hit : results) {
139 System.out.println("Printed results 1 - " + nhits +" of " + totalResults + " total matching documents collected.");
151 engine.results(nhits, totalResults, results);
[all...]
H A DSearchEngine.java131 // internal structure to hold the results from lucene
353 * get results , if no search was started before, no results are returned
355 * hence performance hit applies, if you want results in later pages than
360 * @param ret list of results from start to end or null/empty if no search
363 public void results(int start, int end, List<Hit> ret) { method in class:SearchEngine
398 //TODO generation of ret(results) could be cashed and consumers of engine would just print them in whatever form they need, this way we could get rid of docs
399 // the only problem is that count of docs is usually smaller than number of results
/opengrok/egrok/src/org/opensolaris/opengrok/egrok/ui/
H A DResultsDialog.java54 "{OpenGrok search results for '" + query + "'", "");
166 public void setResults(List<Hit> results) { argument
169 for (Hit hit : results) {
/opengrok/lib/
H A Dbcel-6.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/bcel/ org/apache/bcel/classfile/ ...

Completed in 20 milliseconds