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