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

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DRankAwarePromoter.java80 int stripeSize = Math.max(1, slotsToFill / highRankingSuggestions.size());
81 roundRobin(highRankingSuggestions, slotsToFill, stripeSize, promoted);
105 int stripeSize = Math.max(1, slotsLeft / suggestions.size());
106 roundRobin(suggestions, slotsLeft, stripeSize, promoted);
164 * @param stripeSize number of suggestions to take from each corpus.
168 private int roundRobin(LinkedList<CorpusResult> results, int maxPromoted, int stripeSize, argument
175 count += promote(result, stripeSize, promoted);

Completed in 313 milliseconds