Searched defs:verbs (Results 1 - 2 of 2) sorted by relevance

/external/skia/src/core/
H A DSkPath.cpp87 Stores the verbs and points as they are given to us, with exceptions:
845 const uint8_t* verbs = path.fVerbs.begin(); local
848 SkASSERT(verbs[0] == kMove_Verb);
850 switch (verbs[i]) {
864 pts += gPtsInVerb[verbs[i]];
877 const uint8_t* verbs = path.fVerbs.begin(); local
880 SkASSERT(verbs[0] == kMove_Verb);
882 int n = gPtsInVerb[verbs[i]];
890 switch (verbs[i]) {
905 pts -= gPtsInVerb[verbs[
1049 const uint8_t* verbs = fVerbs; local
[all...]
/external/pcre/
H A Dpcre_compile.c184 /* Table of special "verbs" like (*PRUNE). This is a short table, so it is
207 static const verbitem verbs[] = { variable
219 static const int verbcount = sizeof(verbs)/sizeof(verbitem);
4817 /* First deal with various "verbs" that can be introduced by '*'. */
4849 if (namelen == verbs[i].len &&
4854 if (verbs[i].op == OP_ACCEPT)
4869 if (verbs[i].op < 0) /* Argument is mandatory */
4874 *code = verbs[i].op;
4884 if (verbs[i].op_arg < 0) /* Argument is forbidden */
4889 *code = verbs[
[all...]

Completed in 432 milliseconds