Lines Matching defs:end
287 * this method will requery if end end is more than first query from search,
289 * number of cachePages also end has to be bigger than start !
292 * @param end end of the hit list
293 * @param ret list of results from start to end or null/empty if no search
296 public void results(int start, int end, List<Hit> ret) {
299 if (hits == null || (end < start)) {
306 //TODO check if below fits for if end=old hits.length, or it should include it
307 if (end > hits.length & !allCollected) {
333 for (int ii = start; ii < end; ++ii) {