HomeSort by relevance Sort by last modified time
    Searched refs:fPathRef (Results 1 - 6 of 6) sorted by null

  /external/skia/src/core/
SkPathPriv.h 63 auto verbs = path.fPathRef->verbs();
84 path.fPathRef->addGenIDChangeListener(listener);
SkPath.cpp 128 : fPathRef(SkPathRef::CreateEmpty()) {
134 //fPathRef is assumed to have been emptied by the caller.
145 : fPathRef(SkRef(that.fPathRef.get())) {
158 fPathRef.reset(SkRef(that.fPathRef.get()));
166 //fPathRef is assumed to have been set by the caller.
179 (a.fFillType == b.fFillType && *a.fPathRef.get() == *b.fPathRef.get());
184 fPathRef.swap(that.fPathRef)
    [all...]
SkPathRef.cpp 26 fPathRef = *pathRef;
27 fPathRef->callGenIDChangeListeners();
28 fPathRef->fGenerationID = 0;
29 SkDEBUGCODE(sk_atomic_inc(&fPathRef->fEditorsAttached);)
  /external/skia/include/core/
SkPathRef.h 46 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
51 SkPoint* points() { return fPathRef->getPoints(); }
52 const SkPoint* points() const { return fPathRef->points(); }
58 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt);
62 SkASSERT((unsigned) i < (unsigned) fPathRef->fPointCnt);
72 SkDEBUGCODE(fPathRef->validate();)
73 return fPathRef->growForVerb(verb, weight);
86 return fPathRef->growForRepeatedVerb(verb, numVbs, weights);
94 fPathRef->resetToSize(newVerbCnt, newPointCnt, newConicCount);
100 SkPathRef* pathRef() { return fPathRef; }
    [all...]
SkPath.h 62 bool unique() const { return fPathRef->unique(); }
175 bool isOval(SkRect* rect) const { return fPathRef->isOval(rect); }
186 bool isRRect(SkRRect* rrect) const { return fPathRef->isRRect(rrect); }
207 return 0 == fPathRef->countVerbs();
220 return fPathRef->isFinite();
319 return fPathRef->getBounds();
    [all...]
  /external/skia/tests/
RRectInPathTest.cpp 67 path->fPathRef->setIsRRect(true);

Completed in 170 milliseconds