Lines Matching refs:cIndex
272 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
273 double lineT = fLine.exactPoint(fCubic[cIndex]);
277 double cubicT = (double) (cIndex >> 1);
278 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
285 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
286 double cubicT = (double) (cIndex >> 1);
290 double lineT = fLine.nearPoint(fCubic[cIndex], nullptr);
294 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
315 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
316 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
320 double cubicT = (double) (cIndex >> 1);
321 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
326 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
327 double cubicT = (double) (cIndex >> 1);
331 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
335 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
341 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
342 double lineT = SkDLine::ExactPointV(fCubic[cIndex], top, bottom, x);
346 double cubicT = (double) (cIndex >> 1);
347 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
352 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
353 double cubicT = (double) (cIndex >> 1);
357 double lineT = SkDLine::NearPointV(fCubic[cIndex], top, bottom, x);
361 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);