Lines Matching defs:fPath
418 fPath.reset(); // PathRef memory can grow without bound otherwise.
420 this->makePath(&fPath);
426 SkPath fPath;
826 fPath.addRect(kBaseRect);
830 fPath.addRoundRect(kBaseRect, kRRRadii[0], kRRRadii[1]);
834 fPath.addOval(kBaseRect);
851 fParity = fParity != fPath.conservativelyContainsRect(rect);
881 SkPath fPath;
1109 SkPath fPath;
1120 fPath.moveTo(rand.nextF()*100, rand.nextF()*100);
1121 fPath.lineTo(rand.nextF()*100, rand.nextF()*100);
1122 fPath.quadTo(rand.nextF()*100, rand.nextF()*100, rand.nextF()*100, rand.nextF()*100);
1123 fPath.conicTo(rand.nextF()*100, rand.nextF()*100, rand.nextF()*100, rand.nextF()*100,
1125 fPath.cubicTo(rand.nextF()*100, rand.nextF()*100, rand.nextF()*100, rand.nextF()*100,
1139 fProc(fPath);
1235 SkPath fPath;
1243 fPath.addRRect(SkRRect::MakeRectXY(r, w/8.0f, h/8.0f));
1246 SkPathPriv::SetConvexity(fPath, SkPathConvexity::kConcave);
1247 SkASSERT(!fPath.isConvex());
1249 SkASSERT(fPath.isConvex());
1264 canvas->drawPath(fPath, paint);