Home | History | Annotate | Download | only in core

Lines Matching defs:kMove_Verb

413         SkPath::Verb array has two entries: kMove_Verb, kLine_Verb.
449 /** Returns the number of verbs: kMove_Verb, kLine_Verb, kQuad_Verb, kConic_Verb,
482 kMove_Verb that define empty contours.
508 Includes SkPoint associated with kMove_Verb that define empty
569 lineTo() appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed.
580 lineTo() first appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed.
592 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed;
606 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed;
621 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed;
636 Appends kMove_Verb to verb array and (0, 0) to SkPoint array,
654 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed.
678 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed.
701 Appends kMove_Verb to verb array and (0, 0) to SkPoint array,
728 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed;
746 Appends kMove_Verb to verb array and (0, 0) to SkPoint array, if needed;
763 Appends kMove_Verb to verb array and (0, 0) to SkPoint array,
991 rect may be smaller than the SkPath bounds. SkPath bounds may include kMove_Verb points
1014 /** Add SkRect to SkPath, appending kMove_Verb, three kLine_Verb, and kClose_Verb,
1024 /** Add SkRect to SkPath, appending kMove_Verb, three kLine_Verb, and kClose_Verb.
1036 appending kMove_Verb, three kLine_Verb, and kClose_Verb,
1050 /** Add oval to path, appending kMove_Verb, four kConic_Verb, and kClose_Verb.
1062 /** Add oval to SkPath, appending kMove_Verb, four kConic_Verb, and kClose_Verb.
1073 /** Add circle centered at (x, y) of size radius to SkPath, appending kMove_Verb,
1160 If count is zero, append kMove_Verb to path.
1174 /** Since SkPath verb array begins with kMove_Verb if src is not empty, this
1180 SkPath initial kMove_Verb, then append remining verbs, SkPoint, and conic weights.
1280 /** Set last point to (x, y). If SkPoint array is empty, append kMove_Verb to
1325 kMove_Verb, //!< Starts new contour at next SkPoint.
1351 kClose_Verb, //!< Closes contour, connecting last point to kMove_Verb SkPoint.
1391 If doConsumeDegenerates is true, skip consecutive kMove_Verb entries, returning
1393 skip kClose_Verb following kMove_Verb.
1430 kMove_Verb. if true, contour SkPath::Iter is processing may end with kClose_Verb, or