Home | History | Annotate | Download | only in core

Lines Matching refs:verbs

112     Stores the verbs and points as they are given to us, with exceptions:
612 copy_verbs_reverse(dst, fPathRef->verbs(), count);
1125 const uint8_t* verbs = const_cast<const SkPathRef*>(fPathRef.get())->verbsMemBegin();
1127 if (*verbs == kLine_Verb ||
1128 *verbs == kQuad_Verb ||
1129 *verbs == kConic_Verb ||
1130 *verbs == kCubic_Verb) {
1133 ++verbs;
1526 const uint8_t* verbs = path.fPathRef->verbs();
1530 SkASSERT(verbs[~0] == kMove_Verb);
1532 unsigned v = verbs[~i];
1542 switch (verbs[~i]) {
1560 pts -= pts_in_verb(verbs[~i]);
1568 // we will iterator through src's verbs backwards
1569 const uint8_t* verbs = src.fPathRef->verbsMemBegin(); // points at the last verb
1570 const uint8_t* verbsEnd = src.fPathRef->verbs(); // points just past the first verb
1575 while (verbs < verbsEnd) {
1576 uint8_t v = *(verbs++);
1757 fVerbs = path.fPathRef->verbs();
1775 const uint8_t* verbs = fVerbs;
1778 if (kMove_Verb == *(verbs - 1)) {
1779 verbs -= 1; // skip the initial moveto
1782 while (verbs > stop) {
1783 // verbs points one beyond the current verb, decrement first.
1784 unsigned v = *(--verbs);
2003 fVerbs = path.fPathRef->verbs();
2060 Format in compressed buffer: [ptCount, verbCount, pts[], verbs[]]
2410 fCurrVerb = pathRef.verbs();
2430 const uint8_t* verbs = fCurrVerb;
2432 for (--verbs; verbs > fStopVerbs; --verbs) {
2433 switch (verbs[~0]) {
2457 fCurrVerb = verbs;