/third_party/skia/docs/examples/ |
H A D | Path_copy_const_SkPath.cpp | 11 SkDebugf("path verbs: %d\n", path.countVerbs()); in REG_FIDDLE() 12 SkDebugf("path2 verbs: %d\n", path2.countVerbs()); in REG_FIDDLE() 14 SkDebugf("after reset\n" "path verbs: %d\n", path.countVerbs()); in REG_FIDDLE() 15 SkDebugf("path2 verbs: %d\n", path2.countVerbs()); in REG_FIDDLE()
|
H A D | Path_countVerbs.cpp | 8 SkDebugf("empty verb count: %d\n", path.countVerbs()); in REG_FIDDLE() 10 SkDebugf("round rect verb count: %d\n", path.countVerbs()); in REG_FIDDLE()
|
H A D | Path_getVerbs.cpp | 23 debugster("just right", path, verbs, path.countVerbs()); in REG_FIDDLE()
|
/third_party/skia/tests/ |
H A D | ParsePathTest.cpp | 127 REPORTER_ASSERT(r, path.countVerbs() == gTests[i].fVerbs); in DEF_TEST() 137 REPORTER_ASSERT(r, path.countVerbs() == 5); in DEF_TEST()
|
/third_party/skia/src/core/ |
H A D | SkPath.cpp | 64 return (path.countVerbs() - SkPathPriv::LeadingMoveToCount(path)) == 0; in is_degenerate() 143 // ending with close, so countVerbs needs to be checked against 0. 376 int verbCount = fPathRef->countVerbs(); in isLastContourClosed() 384 int verbCount = fPathRef->countVerbs(); in isLine() 487 int SkPath::countVerbs() const { in countVerbs() function in SkPath 488 return fPathRef->countVerbs(); in countVerbs() 496 int count = std::min(max, fPathRef->countVerbs()); in getVerbs() 500 return fPathRef->countVerbs(); in getVerbs() 601 if (this->countVerbs() < 16) { in dirtyAfterEdit() 646 if (fPathRef->countVerbs() in injectMoveToIfNeeded() [all...] |
H A D | SkPathPriv.h | 56 int verbCount = path.countVerbs(); in IsClosedSingleContour() 84 int verbCount = path.countVerbs(); in LeadingMoveToCount()
|
H A D | SkPathRef.cpp | 238 int oldVCnt = (*pathRef)->countVerbs(); 348 if (int numVerbs = path.countVerbs()) {
|
H A D | SkPath_serial.cpp | 105 int32_t vbs = fPathRef->countVerbs(); in writeToMemory()
|
/third_party/skia/src/gpu/ops/ |
H A D | PathInnerTriangulateOp.cpp | 221 if (fPath.countVerbs() <= 0) { in prePreparePrograms() 259 fPath.countVerbs(), in prePreparePrograms() 423 fTessellator->patchPreallocCount(fPath.countVerbs()); in onPrepare()
|
H A D | PathTessellateOp.h | 36 , fTotalCombinedPathVerbCnt(path.countVerbs()) in PathTessellateOp()
|
H A D | AtlasRenderTask.h | 77 fTotalCombinedPathVerbCnt += path.countVerbs(); in add()
|
H A D | PathStencilCoverOp.h | 38 , fTotalCombinedPathVerbCnt(path.countVerbs()) in PathStencilCoverOp()
|
H A D | StrokeTessellateOp.cpp | 48 , fTotalCombinedVerbCnt(path.countVerbs()) in StrokeTessellateOp()
|
H A D | TessellationPathRenderer.cpp | 37 int numVerbs = path.countVerbs(); in make_non_convex_fill_op()
|
/third_party/skia/bench/ |
H A D | TessellateBench.cpp | 149 fPath.countVerbs(), in DEF_PATH_TESS_BENCH() 163 fPath.countVerbs(), in DEF_PATH_TESS_BENCH() 351 fTotalVerbCount += fPathStrokes[i].fPath.countVerbs();
|
/third_party/skia/bench/graphite/ |
H A D | IntersectionTreeBench.cpp | 136 int numVerbs = path.countVerbs();
|
/third_party/skia/src/gpu/tessellate/ |
H A D | MiddleOutPolygonTriangulator.h | 203 PathMiddleOutFanIter(const SkPath& path) : fMiddleOut(path.countVerbs()) { in PathMiddleOutFanIter()
|
H A D | PathWedgeTessellator.cpp | 43 , fNumRemainingVerbs(fPath.countVerbs()) in MidpointContourParser()
|
/third_party/skia/src/pathops/ |
H A D | SkOpBuilder.cpp | 17 int verbCount = path.countVerbs(); in one_contour()
|
/third_party/skia/samplecode/ |
H A D | SampleSimpleStroker.cpp | 60 int countVerbs() const { return fVerbs.size(); } in countVerbs() function in __anon18654::PathRecorder 305 const int numVerbs = path.countVerbs(); in appendPathReversed()
|
H A D | SamplePathTessellators.cpp | 134 int patchPreallocCount = fTessellator->patchPreallocCount(fPath.countVerbs()); 136 patchPreallocCount += fPath.countVerbs() - 1;
|
/third_party/skia/include/core/ |
H A D | SkPath.h | 290 return 0 == fPathRef->countVerbs(); in isEmpty() 443 int countVerbs() const;
|
H A D | SkPathBuilder.h | 247 int countVerbs() const { return fVerbs.count(); } in countVerbs() function in SkPathBuilder
|
/third_party/skia/include/private/ |
H A D | SkPathRef.h | 301 int countVerbs() const { return fVerbs.count(); } in countVerbs() function in final
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrStyledShape.cpp | 93 const int verbCnt = path.countVerbs(); in path_key_from_data_size() 111 const int verbCnt = path.countVerbs(); in write_path_key_from_data()
|