Searched refs:verbsBegin (Results 1 – 6 of 6) sorted by relevance
/external/skia/src/core/ |
D | SkPathPriv.h | 59 auto verbs = path.fPathRef->verbsBegin(); in IsClosedSingleContour() 84 auto verbs = path.fPathRef->verbsBegin(); in LeadingMoveToCount() 138 Iter begin() { return Iter{fPathRef->verbsBegin()}; } in begin() 164 : Iterate(path.fPathRef->verbsBegin(), in Iterate() 166 (!path.isFinite()) ? path.fPathRef->verbsBegin() in Iterate() 170 Iterate(const uint8_t* verbsBegin, const uint8_t* verbsEnd, const SkPoint* points, in Iterate() 172 : fVerbsBegin(verbsBegin), fVerbsEnd(verbsEnd), fPoints(points), fWeights(weights) { in Iterate() 187 return path.fPathRef->verbsBegin(); in VerbData()
|
D | SkPath.cpp | 496 memcpy(dst, fPathRef->verbsBegin(), count); in getVerbs() 988 const uint8_t* verbs = fPathRef->verbsBegin(); in hasOnlyMoveTos() 1447 const uint8_t* verbsBegin = path.fPathRef->verbsBegin(); in reversePathTo() local 1448 SkASSERT(verbsBegin[0] == kMove_Verb); in reversePathTo() 1452 while (verbs > verbsBegin) { in reversePathTo() 1489 const uint8_t* verbsBegin = src->fPathRef->verbsBegin(); in reverseAddPath() local 1496 while (verbs > verbsBegin) { in reverseAddPath() 1687 fVerbs = path.fPathRef->verbsBegin(); in setPath() 1976 for (auto v = fPathRef->verbsBegin(); v != fPathRef->verbsEnd(); ++v) { in dumpArrays() 2323 fCurrVerb = pathRef.verbsBegin(); in ContourIter()
|
D | SkPathBuilder.cpp | 801 const uint8_t* verbsBegin = src.fPathRef->verbsBegin(); in privateReverseAddPath() local 808 while (verbs > verbsBegin) { in privateReverseAddPath()
|
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()
|
/external/skia/include/private/ |
D | SkPathRef.h | 309 const uint8_t* verbsBegin() const { return fVerbs.begin(); } in verbsBegin() function
|