Lines Matching full:cindex
208 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
209 double lineT = fLine.exactPoint(fCubic[cIndex]);
213 double cubicT = (double) (cIndex >> 1);
214 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
221 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
222 double cubicT = (double) (cIndex >> 1);
226 double lineT = fLine.nearPoint(fCubic[cIndex]);
230 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
235 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
236 double lineT = SkDLine::ExactPointH(fCubic[cIndex], left, right, y);
240 double cubicT = (double) (cIndex >> 1);
241 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
246 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
247 double cubicT = (double) (cIndex >> 1);
251 double lineT = SkDLine::NearPointH(fCubic[cIndex], left, right, y);
255 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
261 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
262 double lineT = SkDLine::ExactPointV(fCubic[cIndex], top, bottom, x);
266 double cubicT = (double) (cIndex >> 1);
267 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);
272 for (int cIndex = 0; cIndex < 4; cIndex += 3) {
273 double cubicT = (double) (cIndex >> 1);
277 double lineT = SkDLine::NearPointV(fCubic[cIndex], top, bottom, x);
281 fIntersections->insert(cubicT, lineT, fCubic[cIndex]);