Lines Matching refs:fCount
24 fCount = count; in SkDashPathEffect()
31 SkDashPath::CalcDashParameters(phase, fIntervals, fCount, in SkDashPathEffect()
41 return SkDashPath::FilterDashPath(dst, src, rec, cullRect, fIntervals, fCount, in filterPath()
174 if (fCount != 2 || in asPoints()
350 if (info->fCount >= fCount && info->fIntervals) { in asADash()
351 memcpy(info->fIntervals, fIntervals, fCount * sizeof(SkScalar)); in asADash()
353 info->fCount = fCount; in asADash()
361 buffer.writeScalarArray(fIntervals, fCount); in flatten()
377 str->appendf("count: %d phase %.2f intervals: (", fCount, fPhase); in toString()
378 for (int i = 0; i < fCount; ++i) { in toString()
380 if (i < fCount-1) { in toString()