Lines Matching defs:pointCount
244 int pointCount = fPathRef->countPoints();
245 if (pointCount != ending.fPathRef->countPoints()) {
248 if (!pointCount) {
313 int pointCount = SkPathPriv::PtsInVerb((unsigned) verb);
314 SkASSERT(pointCount > 0);
316 if (!SkPathPriv::AllPointsEq(pts, pointCount + 1)) {
318 int nextPt = pointCount;
2274 // pointCount potentially includes a block of leading moveTos and trailing moveTos. Convexity
2276 int pointCount = this->countPoints();
2280 if (fLastMoveToIndex == pointCount - 1) {
2285 pointCount--;
2296 pointCount -= skipCount;
2300 SkPathConvexity convexity = Convexicator::BySign(points, pointCount);
3442 SkPath SkPath::Make(const SkPoint pts[], int pointCount,
3451 if (!info.valid || info.points > pointCount || info.weights > wCount) {