Home
last modified time | relevance | path

Searched refs:howbig (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/util/
DMathUtils.java188 public static int random(int howbig) { in random() argument
189 return (int) (sRandom.nextFloat() * howbig); in random()
192 public static int random(int howsmall, int howbig) { in random() argument
193 if (howsmall >= howbig) return howsmall; in random()
194 return (int) (sRandom.nextFloat() * (howbig - howsmall) + howsmall); in random()
197 public static float random(float howbig) { in random() argument
198 return sRandom.nextFloat() * howbig; in random()
201 public static float random(float howsmall, float howbig) { in random() argument
202 if (howsmall >= howbig) return howsmall; in random()
203 return sRandom.nextFloat() * (howbig - howsmall) + howsmall; in random()