Searched refs:forceClosed (Results 1 – 8 of 8) sorted by relevance
/external/skia/src/core/ |
D | SkPathMeasure.cpp | 13 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()
|
D | SkContourMeasure.cpp | 445 SkContourMeasureIter::SkContourMeasureIter(const SkPath& path, bool forceClosed, in SkContourMeasureIter() argument 449 fForceClosed = forceClosed; in SkContourMeasureIter() 458 void SkContourMeasureIter::reset(const SkPath& path, bool forceClosed, SkScalar resScale) { in reset() argument 464 fForceClosed = forceClosed; in reset()
|
/external/skia/include/core/ |
D | SkPathMeasure.h | 25 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 31 void setPath(const SkPath*, bool forceClosed);
|
D | SkContourMeasure.h | 100 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 108 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
/external/skqp/include/core/ |
D | SkPathMeasure.h | 28 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 36 void setPath(const SkPath*, bool forceClosed);
|
/external/skqp/src/core/ |
D | SkPathMeasure.cpp | 504 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/ |
D | ShadowPathMeasure.java | 16 protected void __constructor__(Path path, boolean forceClosed) { in __constructor__() argument
|
/external/skia/tests/ |
D | PathMeasureTest.cpp | 275 for (bool forceClosed : {false, true}) { in test_MLM_contours() 276 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()
|