Home | History | Annotate | Download | only in core

Lines Matching refs:verbs

122     Stores the verbs and points as they are given to us, with exceptions:
674 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1189 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin();
1191 if (*verbs == kLine_Verb ||
1192 *verbs == kQuad_Verb ||
1193 *verbs == kConic_Verb ||
1194 *verbs == kCubic_Verb) {
1197 ++verbs;
1611 const uint8_t* verbs = path.fPathRef->verbsMemBegin(); // points at the last verb
1612 if (!verbs) { // empty path returns nullptr
1615 const uint8_t* verbsEnd = path.fPathRef->verbs() - 1; // points just past the first verb
1620 while (verbs < verbsEnd) {
1621 uint8_t v = *verbs++;
1640 SkASSERT(verbs - path.fPathRef->verbsMemBegin() == 1);
1653 // we will iterator through src's verbs backwards
1654 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); // points at the last verb
1655 const uint8_t* verbsEnd = src.fPathRef->verbs(); // points just past the first verb
1660 while (verbs < verbsEnd) {
1661 uint8_t v = *(verbs++);
1831 fVerbs = path.fPathRef->verbs();
1852 const uint8_t* verbs = fVerbs;
1855 if (kMove_Verb == *(verbs - 1)) {
1856 verbs -= 1; // skip the initial moveto
1859 while (verbs > stop) {
1860 // verbs points one beyond the current verb, decrement first.
1861 unsigned v = *(--verbs);
2069 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
2652 fCurrVerb = pathRef.verbs();
2672 const uint8_t* verbs = fCurrVerb;
2674 for (--verbs; verbs > fStopVerbs; --verbs) {
2675 switch (verbs[~0]) {
2699 fCurrVerb = verbs;