/external/skia/src/core/ |
D | SkPathRef.cpp | 138 SkASSERT((*dst)->countPoints() == src.countPoints()); in CreateTransformedCopy() 143 bool canXformBounds = !src.fBoundsIsDirty && matrix.rectStaysRect() && src.countPoints() > 1; in CreateTransformedCopy() 263 SkASSERT(pointCount == ref->countPoints()); in CreateFromBuffer() 277 pCount != ref->countPoints() || cCount != ref->fConicWeights.count()) { in CreateFromBuffer() 314 int oldPCnt = (*pathRef)->countPoints(); in Rewind() 431 int count = out->countPoints() * 2; in interpolate()
|
D | SkPath.cpp | 374 SkASSERT(2 == fPathRef->countPoints()); in isLine() 595 pts = fPathRef->points() + fPathRef->countPoints(); in isNestedFillRects() 624 int SkPath::countPoints() const { in countPoints() function in SkPath 625 return fPathRef->countPoints(); in countPoints() 633 int count = SkMin32(max, fPathRef->countPoints()); in getPoints() 635 return fPathRef->countPoints(); in getPoints() 639 if ((unsigned)index < (unsigned)fPathRef->countPoints()) { in getPoint() 670 int count = fPathRef->countPoints(); in getLastPt() 686 int count = fPathRef->countPoints(); in setPt() 698 int count = fPathRef->countPoints(); in setLastPt() [all …]
|
D | SkStroke.cpp | 328 fFirstOuterPtIndexInContour = fOuter.countPoints(); in finishContour() 365 fOuter.incReserve(src.countPoints() * 3); in SkPathStroker() 367 fInner.incReserve(src.countPoints()); in SkPathStroker() 1473 if (2 == src.countPoints()) { in strokePath()
|
D | SkEdgeBuilder.cpp | 246 int maxEdgeCount = path.countPoints(); in buildPoly()
|
D | SkScan_AntiPath.cpp | 650 return path.countPoints() < SkTMax(bounds.width(), bounds.height()) / 2 - 10; in suitableForAAA()
|
D | SkGlyphCache.cpp | 209 fMemoryUsed += sizeof(SkPath) + path->countPoints() * sizeof(SkPoint); in findPath()
|
D | SkScan_AAAPath.cpp | 1676 bool skipIntersect = path.countPoints() > (stop_y - start_y) * 2; in aaa_fill_path()
|
/external/skia/include/private/ |
D | SkPathRef.h | 247 int countPoints() const { SkDEBUGCODE(this->validate();) return fPointCnt; } in countPoints() function 269 const SkPoint* pointsEnd() const { return this->points() + this->countPoints(); } in pointsEnd() 348 return bounds->setBoundsCheck(ref.points(), ref.countPoints()); in ComputePtBounds()
|
/external/skia/src/utils/ |
D | SkShadowTessellator.cpp | 391 fPositions.setReserve(4 * path.countPoints()); in SkAmbientShadowTessellator() 392 fColors.setReserve(4 * path.countPoints()); in SkAmbientShadowTessellator() 395 fIndices.setReserve(12 * path.countPoints()); in SkAmbientShadowTessellator() 835 fPositions.setReserve(5 * path.countPoints()); in SkSpotShadowTessellator() 836 fColors.setReserve(5 * path.countPoints()); in SkSpotShadowTessellator() 839 fIndices.setReserve(15 * path.countPoints()); in SkSpotShadowTessellator() 840 fClipPolygon.setReserve(path.countPoints()); in SkSpotShadowTessellator() 1009 fPathPolygon.setReserve(path.countPoints()); in computeClipAndPathPolygons()
|
D | SkLua.cpp | 1448 lua_pushinteger(L, get_obj<SkPath>(L, 1)->countPoints()); in lpath_countPoints()
|
/external/skia/src/gpu/gl/ |
D | GrGLPath.cpp | 103 int pointCnt = skPath.countPoints(); in init_path_object_for_general_path() 225 int pointCnt = skPath.countPoints(); in InitPathObjectPathData()
|
/external/skia/tests/ |
D | ParsePathTest.cpp | 128 REPORTER_ASSERT(r, path.countPoints() == gTests[i].fPoints); in DEF_TEST()
|
D | EmptyPathTest.cpp | 52 paint.isAntiAlias(), path.getFillType(), path.countPoints()); in drawAndTest()
|
D | PathTest.cpp | 2830 REPORTER_ASSERT(reporter, gZeroLengthTests[i].numResultPts == (size_t)p.countPoints()); in test_zero_length_paths() 3575 REPORTER_ASSERT(reporter, 0 == p.countPoints()); in test_empty() 4173 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints()); in TestPathRef() 4184 REPORTER_ASSERT(reporter, kRepeatCnt == pathRef->countPoints()); in TestPathRef() 4195 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints()); in TestPathRef() 4207 REPORTER_ASSERT(reporter, 2*kRepeatCnt == pathRef->countPoints()); in TestPathRef() 4220 REPORTER_ASSERT(reporter, 3*kRepeatCnt == pathRef->countPoints()); in TestPathRef()
|
/external/skia/gm/ |
D | strokerect.cpp | 33 int n = path.countPoints(); in draw_path()
|
D | pathcontourstart.cpp | 115 const int n = path.countPoints(); in drawOneColumn()
|
/external/skia/src/gpu/ |
D | GrShape.cpp | 81 const int pointCnt = path.countPoints(); in path_key_from_data_size() 96 const int pointCnt = path.countPoints(); in write_path_key_from_data()
|
D | GrDistanceFieldGenFromVector.cpp | 231 int countPoints() { in countPoints() function in PathSegment
|
/external/skia/src/gpu/ops/ |
D | GrAAConvexTessellator.cpp | 354 this->reservePts(5*path.countPoints()); in extractFromPath() 358 fIndices.setReserve(18*path.countPoints() + 6); in extractFromPath() 360 fNorms.setReserve(path.countPoints()); in extractFromPath()
|
D | GrAAConvexPathRenderer.cpp | 50 int countPoints() { in countPoints() function 141 int n = segb.countPoints(); in compute_vectors()
|
/external/skia/tools/debugger/ |
D | SkObjectParser.cpp | 179 mPath->appendS32(path.countPoints()); in PathToString()
|
/external/skia/experimental/SimpleCocoaApp/ |
D | SimpleApp.mm | 163 int points = path.countPoints();
|
/external/skia/include/core/ |
D | SkPath.h | 306 int countPoints() const;
|
/external/skia/src/gpu/ccpr/ |
D | GrCCPRCoverageOpsBuilder.cpp | 176 SkASSERT(path.countPoints() > 0); in parsePath()
|
/external/skia/samplecode/ |
D | SampleQuadStroker.cpp | 281 int n = path.countPoints(); in draw_points()
|