Home | History | Annotate | Download | only in widget

Lines Matching defs:nextInt

183                     randOp(nextInt(random, nextInt(random, 4)));
253 int s = nextInt(random, updatedItemCount - 1);
254 int len = Math.max(1, nextInt(random, updatedItemCount - s));
259 int s = updatedItemCount == 0 ? 0 : nextInt(random, updatedItemCount);
260 add(s, nextInt(random, 50));
264 int from = nextInt(random, updatedItemCount);
267 to = nextInt(random, updatedItemCount);
274 s = nextInt(random, updatedItemCount - 1);
275 int len = Math.max(1, nextInt(random, updatedItemCount - s));
282 int nextInt(Random random, int n) {
286 return random.nextInt(n);