Lines Matching refs:fPoints
243 fPoints.reset(kNumPoints);
245 fPoints[i].set(fRandom.nextRangeScalar(bounds->fLeft, bounds->fRight),
263 path->moveTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
266 path->lineTo(fPoints[(fCurrPoint++) & (kNumPoints - 1)]);
269 path->quadTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
270 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)]);
274 path->conicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
275 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
280 path->cubicTo(fPoints[(fCurrPoint + 0) & (kNumPoints - 1)],
281 fPoints[(fCurrPoint + 1) & (kNumPoints - 1)],
282 fPoints[(fCurrPoint + 2) & (kNumPoints - 1)]);
298 fPoints.reset(0);
310 SkAutoTArray<SkPoint> fPoints;