Lines Matching refs:Verb

283         Empty SkPath may have FillType but has no SkPoint, SkPath::Verb, or conic weight.
286 @return true if the path contains no SkPath::Verb array
294 Contour is closed if SkPath SkPath::Verb array was last modified by close(). When stroked,
392 SkPath::Verb array has two entries: kMove_Verb, kLine_Verb.
582 /** Adds line from last point to (x, y). If SkPath is empty, or last SkPath::Verb is
596 /** Adds line from last point to SkPoint p. If SkPath is empty, or last SkPath::Verb is
609 /** Adds line from last point to vector (dx, dy). If SkPath is empty, or last SkPath::Verb is
628 If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to (0, 0)
646 If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to (0, 0)
662 If SkPath is empty, or last SkPath::Verb
686 If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to (0, 0)
711 If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to (0, 0)
735 weighted by w. If SkPath is empty, or last SkPath::Verb
763 (x3, y3). If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to
782 SkPoint p3. If SkPath is empty, or last SkPath::Verb is kClose_Verb, last point is set to
800 If SkPath is empty, or last SkPath::Verb
989 close() has no effect if SkPath is empty or last SkPath SkPath::Verb is kClose_Verb.
1394 SegmentMask constants correspond to each drawing Verb type in SkPath; for
1414 /** \enum SkPath::Verb
1415 Verb instructs SkPath how to interpret one or more SkPoint and optional conic weight;
1418 enum Verb {
1469 /** Returns next SkPath::Verb in verb array, and advances SkPath::Iter.
1472 Zero to four SkPoint are stored in pts, depending on the returned SkPath::Verb.
1474 @param pts storage for SkPoint data describing returned SkPath::Verb
1475 @return next SkPath::Verb from verb array
1479 Verb next(SkPoint pts[4]);
1522 Verb autoClose(SkPoint pts[2]);
1629 /** Returns next SkPath::Verb in verb array, and advances RawIter.
1631 Zero to four SkPoint are stored in pts, depending on the returned SkPath::Verb.
1633 @param pts storage for SkPoint data describing returned SkPath::Verb
1634 @return next SkPath::Verb from verb array
1636 Verb next(SkPoint[4]);
1638 /** Returns next SkPath::Verb, but does not advance RawIter.
1640 @return next SkPath::Verb from verb array
1642 Verb peek() const {
1643 return (fIter != fEnd) ? static_cast<Verb>(std::get<0>(*fIter)) : kDone_Verb;