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

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java107 public int totalHits; field in class:SearchHelper
239 * <li>{@link #totalHits} (see {@link TopFieldDocs#totalHits})</li>
252 totalHits = fdocs.totalHits;
/opengrok-jel/src/org/opensolaris/opengrok/search/
H A DSearchEngine.java126 int totalHits=0; field in class:SearchEngine
185 totalHits = collector.getTotalHits();
186 if (!paging && totalHits>0) {
187 collector = TopScoreDocCollector.create(totalHits, docsScoredInOrder);
228 totalHits = collector.getTotalHits();
229 if (!paging && totalHits > 0) {
230 collector = TopScoreDocCollector.create(totalHits, docsScoredInOrder);
342 collector = TopScoreDocCollector.create(totalHits, docsScoredInOrder);

Completed in 258 milliseconds