HomeSort by relevance Sort by last modified time
    Searched defs:countPoints (Results 1 - 4 of 4) sorted by null

  /external/skia/legacy/include/core/
SkPath.h 224 int countPoints() const {
229 (i.e. is not 0 <= index < countPoints()) then the returned coordinates
  /external/skia/src/core/
SkPathRef.h 220 SkASSERT(pointCount == ref->countPoints());
231 SkASSERT(pointCount == ref->countPoints());
255 int oldPCnt = (*pathRef)->countPoints();
279 int countPoints() const { this->validate(); return fPointCnt; }
298 * Shortcut for this->points() + this->countPoints()
300 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
SkPath.cpp 187 int count = ref.countPoints();
634 int SkPath::countPoints() const {
635 return fPathRef->countPoints();
643 int count = SkMin32(max, fPathRef->countPoints());
645 return fPathRef->countPoints();
649 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
680 int count = fPathRef->countPoints();
696 int count = fPathRef->countPoints();
750 fLastMoveToIndex = ed.pathRef()->countPoints();
914 fLastMoveToIndex = ed.pathRef()->countPoints();
    [all...]
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 38 int countPoints() {
130 int n = segb.countPoints();

Completed in 897 milliseconds