Home
last modified time | relevance | path

Searched refs:forceClosed (Results 1 – 9 of 9) sorted by relevance

/external/skia/src/core/
DSkPathMeasure.cpp13 SkPathMeasure::SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale) in SkPathMeasure() argument
14 : fIter(path, forceClosed, resScale) in SkPathMeasure()
21 void SkPathMeasure::setPath(const SkPath* path, bool forceClosed) { in setPath() argument
22 fIter.reset(path ? *path : SkPath(), forceClosed); in setPath()
DSkContourMeasure.cpp177 Impl(const SkPath& path, bool forceClosed, SkScalar resScale) in Impl() argument
181 , fForceClosed(forceClosed) {} in Impl()
477 SkContourMeasureIter::SkContourMeasureIter(const SkPath& path, bool forceClosed, in SkContourMeasureIter() argument
479 this->reset(path, forceClosed, resScale); in SkContourMeasureIter()
486 void SkContourMeasureIter::reset(const SkPath& path, bool forceClosed, SkScalar resScale) { in reset() argument
488 fImpl = std::make_unique<Impl>(path, forceClosed, resScale); in reset()
/external/skia/include/core/
DSkPathMeasure.h24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
30 void setPath(const SkPath*, bool forceClosed);
DSkContourMeasure.h102 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
110 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
/external/skqp/include/core/
DSkPathMeasure.h28 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
36 void setPath(const SkPath*, bool forceClosed);
/external/skqp/src/core/
DSkPathMeasure.cpp504 SkPathMeasure::SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale) { in SkPathMeasure() argument
508 fForceClosed = forceClosed; in SkPathMeasure()
511 fIter.setPath(fPath, forceClosed); in SkPathMeasure()
518 void SkPathMeasure::setPath(const SkPath* path, bool forceClosed) { in setPath() argument
525 fForceClosed = forceClosed; in setPath()
528 fIter.setPath(fPath, forceClosed); in setPath()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPathMeasure.java16 protected void __constructor__(Path path, boolean forceClosed) { in __constructor__() argument
/external/skia/tests/
DPathMeasureTest.cpp276 for (bool forceClosed : {false, true}) { in test_MLM_contours()
277 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()
/external/skia/modules/canvaskit/npm_build/types/
Dindex.d.ts3109 new (path: Path, forceClosed: boolean, resScale: number): ContourMeasureIter;