Lines Matching refs:fCount
24 fCount = count; in SkDashImpl()
30 SkDashPath::CalcDashParameters(phase, fIntervals, fCount, in SkDashImpl()
40 return SkDashPath::InternalFilter(dst, src, rec, cullRect, fIntervals, fCount, in filterPath()
170 if (fCount != 2 || in asPoints()
353 if (info->fCount >= fCount && info->fIntervals) { in asADash()
354 memcpy(info->fIntervals, fIntervals, fCount * sizeof(SkScalar)); in asADash()
356 info->fCount = fCount; in asADash()
364 buffer.writeScalarArray(fIntervals, fCount); in flatten()
380 str->appendf("count: %d phase %.2f intervals: (", fCount, fPhase); in toString()
381 for (int i = 0; i < fCount; ++i) { in toString()
383 if (i < fCount-1) { in toString()