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