Lines Matching defs:temp
149 SkPoint temp = cubic.ptAtT(tValues[index]).asSkPoint();
150 if (0 == index || result.fX > temp.fX) {
151 result = temp;
333 SkPathBuilder* temp = contour.fReverse ? &reverse : &result;
338 temp->moveTo(pts[0]);
341 temp->lineTo(pts[1]);
344 temp->quadTo(pts[1], pts[2]);
347 temp->conicTo(pts[1], pts[2], *w);
350 temp->cubicTo(pts[1], pts[2], pts[3]);
353 temp->close();
358 SkASSERT(temp == &reverse);