Lines Matching full:frand
147 fPathDepthLimit = fRand.nextRangeU(1, 2);
148 fPathContourCount = fRand.nextRangeU(1, 4);
149 fPathSegmentLimit = fRand.nextRangeU(1, 8);
154 fPathDepthLimit = fRand.nextRangeU(1, 3);
155 fPathContourCount = fRand.nextRangeU(1, 6);
156 fPathSegmentLimit = fRand.nextRangeU(1, 16);
178 fRand.setSeed(seed);
188 return (SkPath::AddPathMode) fRand.nextRangeU(SkPath::kAppend_AddPathMode,
193 return (RandomAddPath) fRand.nextRangeU(0, kRandomAddPath_Last);
198 angle = fRand.nextF();
203 return fRand.nextBool();
207 return (SkPath::Direction) fRand.nextRangeU(SkPath::kCW_Direction, SkPath::kCCW_Direction);
213 RandomSetMatrix setMatrix = (RandomSetMatrix) fRand.nextRangeU(0, kRandomSetMatrix_Last);
276 bool antiAlias = fRand.nextBool();
279 (SkPaint::Style) fRand.nextRangeU(SkPaint::kFill_Style, SkPaint::kStrokeAndFill_Style);
281 SkColor color = (SkColor) fRand.nextU();
283 SkScalar width = fRand.nextRangeF(0, 10);
287 SkPaint::Cap cap = (SkPaint::Cap) fRand.nextRangeU(SkPaint::kButt_Cap, SkPaint::kSquare_Cap);
289 SkPaint::Join join = (SkPaint::Join) fRand.nextRangeU(SkPaint::kMiter_Join,
308 size_t arrayCount = fRand.nextRangeU(1, 10);
544 return fRand.nextRangeU(1, fPathSegmentLimit);
548 return (RandomSetRRect) fRand.nextRangeU(0, kRandomSetRRect_Last);
553 scalar = fRand.nextRangeF(fFloatMin, fFloatMax);
581 SkRandom fRand;