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

  /external/chromium_org/third_party/skia/include/core/
SkPathRef.h 198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
218 * Shortcut for this->points() + this->countPoints()
220 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
281 int count = ref.countPoints();
  /external/skia/include/core/
SkPathRef.h 198 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; }
218 * Shortcut for this->points() + this->countPoints()
220 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); }
281 int count = ref.countPoints();
  /external/chromium_org/third_party/skia/src/gpu/
GrAAConvexPathRenderer.cpp 45 int countPoints() {
137 int n = segb.countPoints();
  /external/skia/src/gpu/
GrAAConvexPathRenderer.cpp 45 int countPoints() {
137 int n = segb.countPoints();
  /external/chromium_org/third_party/skia/src/core/
SkPath.cpp 331 SkASSERT(2 == fPathRef->countPoints());
573 int SkPath::countPoints() const {
574 return fPathRef->countPoints();
582 int count = SkMin32(max, fPathRef->countPoints());
584 return fPathRef->countPoints();
588 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
619 int count = fPathRef->countPoints();
635 int count = fPathRef->countPoints();
671 fLastMoveToIndex = fPathRef->countPoints();
863 fLastMoveToIndex = fPathRef->countPoints();
    [all...]
  /external/skia/src/core/
SkPath.cpp 331 SkASSERT(2 == fPathRef->countPoints());
573 int SkPath::countPoints() const {
574 return fPathRef->countPoints();
582 int count = SkMin32(max, fPathRef->countPoints());
584 return fPathRef->countPoints();
588 if ((unsigned)index < (unsigned)fPathRef->countPoints()) {
619 int count = fPathRef->countPoints();
635 int count = fPathRef->countPoints();
671 fLastMoveToIndex = fPathRef->countPoints();
863 fLastMoveToIndex = fPathRef->countPoints();
    [all...]

Completed in 1166 milliseconds