Lines Matching refs:random
45 private static Random random = new Random(); field in TestUtil
59 cInfo.setCol(random.nextInt(colLimit)); in randCell()
60 cInfo.setRow(random.nextInt(rowLimit)); in randCell()
75 cInfo.setCol(random.nextInt(colTop)); in randCell()
76 cInfo.setRow(random.nextInt(rowTop)); in randCell()
88 double basic = random.nextInt(max * 2); in randFontSize()
121 int r = random.nextInt(256); in randColor()
122 int g = random.nextInt(256); in randColor()
123 int b = random.nextInt(256); in randColor()
137 int r = random.nextInt(rMax + 1) % 256; in randColor()
138 int g = random.nextInt(gMax + 1) % 256; in randColor()
139 int b = random.nextInt(bMax + 1) % 256; in randColor()