Lines Matching refs:fIntervals
39 fIntervals.reset(src.getDashCount()); in INHERITED()
40 memcpy(fIntervals.get(), src.fIntervals.get(), fIntervals.count() * sizeof(SkScalar)); in INHERITED()
62 fIntervals.reset(other.getDashCount());
63 memcpy(fIntervals.get(), other.fIntervals.get(), fIntervals.count() * sizeof(SkScalar));
77 fIntervals.count() != other.fIntervals.count() || in hasEqualEffect()
78 memcmp(fIntervals.get(), other.fIntervals.get(), in hasEqualEffect()
79 fIntervals.count() * sizeof(SkScalar)) != 0) { in hasEqualEffect()
96 fIntervals.reset(dashInfo.fCount); in setDashInfo()
97 dashInfo.fIntervals = fIntervals.get(); in setDashInfo()
113 fIntervals.reset(info.fCount); in setDashInfo()
114 for (int i = 0; i < fIntervals.count(); i++) { in setDashInfo()
115 fIntervals[i] = info.fIntervals[i]; in setDashInfo()
128 return fIntervals.count(); in getDashCount()
138 return fIntervals.get(); in getDashIntervals()
187 SkAutoSTArray<2, SkScalar> fIntervals; variable