Lines Matching defs:end
880 loss in radians-conversion and/or sin/cos, we may end up with coincident
1328 Need to handle the case when the angle is sharp, and our computed end-points
1834 fEnd = iterate.end();
2647 static bool checkOnCurve(SkScalar x, SkScalar y, const SkPoint& start, const SkPoint& end) {
2648 if (start.fY == end.fY) {
2649 return between(start.fX, x, end.fX) && x != end.fX;
2693 if (x != pts[3].fX || y != pts[3].fY) { // don't test end points; they're start points
2771 if (x != pts[2].fX || y != pts[2].fY) { // don't test end points; they're start points
2852 if (x != pts[2].fX || y != pts[2].fY) { // don't test end points; they're start points
2903 // y of the query point is at the end point is handled above, we can be
2904 // sure that we're on the line (excluding the end point) here