Searched refs:verbsBegin (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/src/core/ |
D | SkPathPriv.h | 60 auto verbs = path.fPathRef->verbsBegin(); in IsClosedSingleContour() 85 auto verbs = path.fPathRef->verbsBegin(); in LeadingMoveToCount() 139 Iter begin() { return Iter{fPathRef->verbsBegin()}; } in begin() 165 : Iterate(path.fPathRef->verbsBegin(), in Iterate() 167 (!path.isFinite()) ? path.fPathRef->verbsBegin() in Iterate() 171 Iterate(const uint8_t* verbsBegin, const uint8_t* verbsEnd, const SkPoint* points, in Iterate() 173 : fVerbsBegin(verbsBegin), fVerbsEnd(verbsEnd), fPoints(points), fWeights(weights) { in Iterate() 188 return path.fPathRef->verbsBegin(); in VerbData()
|
D | SkPathBuilder.cpp | 217 const uint8_t* start = path.fPathRef->verbsBegin(); in make() 818 const uint8_t* verbsBegin = src.fPathRef->verbsBegin(); in privateReverseAddPath() local 825 while (verbs > verbsBegin) { in privateReverseAddPath()
|
D | SkPath.cpp | 498 memcpy(dst, fPathRef->verbsBegin(), count); in getVerbs() 997 const uint8_t* verbs = fPathRef->verbsBegin(); in hasOnlyMoveTos() 1455 const uint8_t* verbsBegin = path.fPathRef->verbsBegin(); in reversePathTo() local 1456 SkASSERT(verbsBegin[0] == kMove_Verb); in reversePathTo() 1460 while (verbs > verbsBegin) { in reversePathTo() 1497 const uint8_t* verbsBegin = src->fPathRef->verbsBegin(); in reverseAddPath() local 1504 while (verbs > verbsBegin) { in reverseAddPath() 1695 fVerbs = path.fPathRef->verbsBegin(); in setPath() 1984 for (auto v = fPathRef->verbsBegin(); v != fPathRef->verbsEnd(); ++v) { in dumpArrays() 2237 while(verbs > fPathRef->verbsBegin() && *verbs == Verb::kMove_Verb) { in computeConvexity() [all …]
|
D | SkPath_serial.cpp | 127 buffer.write(fPathRef->verbsBegin(), vbs * sizeof(uint8_t)); in writeToMemory()
|
D | SkPathRef.cpp | 562 fVerbs = path.verbsBegin(); in setPathRef() 693 fVerbs = path.fPathRef->verbsBegin(); in SkPathEdgeIter()
|
/third_party/skia/include/private/ |
D | SkPathRef.h | 309 const uint8_t* verbsBegin() const { return fVerbs.begin(); } in verbsBegin() function
|