Home
last modified time | relevance | path

Searched refs:fPathRef (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/core/
DSkPath.cpp128 : fPathRef(SkPathRef::CreateEmpty()) { in SkPath()
145 : fPathRef(SkRef(that.fPathRef.get())) { in SkPath()
158 fPathRef.reset(SkRef(that.fPathRef.get())); in operator =()
178 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get()); in operator ==()
183 fPathRef.swap(&that.fPathRef); in swap()
295 uint32_t genID = fPathRef->genID(); in getGenerationID()
306 fPathRef.reset(SkPathRef::CreateEmpty()); in reset()
313 SkPathRef::Rewind(&fPathRef); in rewind()
318 int verbCount = fPathRef->countVerbs(); in isLine()
321 SkASSERT(kMove_Verb == fPathRef->atVerb(0)); in isLine()
[all …]
DSkPathRef.cpp25 fPathRef = *pathRef; in Editor()
26 fPathRef->fGenerationID = 0; in Editor()
27 SkDEBUGCODE(sk_atomic_inc(&fPathRef->fEditorsAttached);) in Editor()
/external/skia/include/core/
DSkPathRef.h47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) } in ~Editor()
52 SkPoint* points() { return fPathRef->getPoints(); } in points()
53 const SkPoint* points() const { return fPathRef->points(); } in points()
59 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt); in atPoint()
63 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt); in atPoint()
73 SkDEBUGCODE(fPathRef->validate();)
74 return fPathRef->growForVerb(verb, weight);
87 return fPathRef->growForRepeatedVerb(verb, numVbs, weights);
95 fPathRef->resetToSize(newVerbCnt, newPointCnt, newConicCount); in resetToSize()
101 SkPathRef* pathRef() { return fPathRef; } in pathRef()
[all …]
DSkPath.h45 bool unique() const { return fPathRef->unique(); } in unique()
158 bool isOval(SkRect* rect) const { return fPathRef->isOval(rect); } in isOval()
179 return 0 == fPathRef->countVerbs(); in isEmpty()
188 return fPathRef->isFinite(); in isFinite()
286 return fPathRef->getBounds(); in getBounds()
813 uint32_t getSegmentMasks() const { return fPathRef->getSegmentMasks(); } in getSegmentMasks()
961 SkDEBUGCODE(void experimentalValidateRef() const { fPathRef->validate(); } )
975 SkAutoTUnref<SkPathRef> fPathRef; variable
1025 return fPathRef->hasComputedBounds(); in hasComputedBounds()
1031 SkPathRef::Editor ed(&fPathRef); in setBounds()