Lines Matching refs:fRand
146 fPathDepthLimit = fRand.nextRangeU(1, 2); in randomize()
147 fPathContourCount = fRand.nextRangeU(1, 4); in randomize()
148 fPathSegmentLimit = fRand.nextRangeU(1, 8); in randomize()
153 fPathDepthLimit = fRand.nextRangeU(1, 3); in randomize()
154 fPathContourCount = fRand.nextRangeU(1, 6); in randomize()
155 fPathSegmentLimit = fRand.nextRangeU(1, 16); in randomize()
177 fRand.setSeed(seed); in setSeed()
187 return (SkPath::AddPathMode) fRand.nextRangeU(SkPath::kAppend_AddPathMode, in makeAddPathMode()
192 return (RandomAddPath) fRand.nextRangeU(0, kRandomAddPath_Last); in makeAddPathType()
197 angle = fRand.nextF(); in makeAngle()
202 return fRand.nextBool(); in makeBool()
206 return (SkPath::Direction) fRand.nextRangeU(SkPath::kCW_Direction, SkPath::kCCW_Direction); in makeDirection()
212 RandomSetMatrix setMatrix = (RandomSetMatrix) fRand.nextRangeU(0, kRandomSetMatrix_Last); in makeMatrix()
275 bool antiAlias = fRand.nextBool(); in makePaint()
278 (SkPaint::Style) fRand.nextRangeU(SkPaint::kFill_Style, SkPaint::kStrokeAndFill_Style); in makePaint()
280 SkColor color = (SkColor) fRand.nextU(); in makePaint()
282 SkScalar width = fRand.nextRangeF(0, 10); in makePaint()
286 SkPaint::Cap cap = (SkPaint::Cap) fRand.nextRangeU(SkPaint::kButt_Cap, SkPaint::kSquare_Cap); in makePaint()
288 SkPaint::Join join = (SkPaint::Join) fRand.nextRangeU(SkPaint::kMiter_Join, in makePaint()
307 size_t arrayCount = fRand.nextRangeU(1, 10); in makePointArray()
543 return fRand.nextRangeU(1, fPathSegmentLimit); in makeSegmentCount()
547 return (RandomSetRRect) fRand.nextRangeU(0, kRandomSetRRect_Last); in makeSetRRectType()
552 scalar = fRand.nextRangeF(fFloatMin, fFloatMax); in makeScalar()
581 SkRandom fRand; member in FuzzPath