Home
last modified time | relevance | path

Searched refs:forceClosed (Results 1 – 8 of 8) 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.cpp445 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/
DSkPathMeasure.h25 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
31 void setPath(const SkPath*, bool forceClosed);
DSkContourMeasure.h100 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
108 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.cpp275 for (bool forceClosed : {false, true}) { in test_MLM_contours()
276 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()