/third_party/flutter/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()
|
/third_party/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 | 177 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()
|
/third_party/flutter/skia/include/core/ |
D | SkPathMeasure.h | 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 30 void setPath(const SkPath*, bool forceClosed);
|
D | SkContourMeasure.h | 99 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 107 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
/third_party/skia/include/core/ |
D | SkPathMeasure.h | 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 30 void setPath(const SkPath*, bool forceClosed);
|
D | SkContourMeasure.h | 102 SkContourMeasureIter(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 110 void reset(const SkPath& path, bool forceClosed, SkScalar resScale = 1);
|
/third_party/flutter/engine/flutter/lib/ui/painting/ |
D | path_measure.cc | 41 bool forceClosed) { in Create() argument 48 std::make_unique<SkContourMeasureIter>(skPath, forceClosed, resScale); in Create()
|
D | path_measure.h | 31 bool forceClosed);
|
/third_party/flutter/skia/tests/ |
D | PathMeasureTest.cpp | 275 for (bool forceClosed : {false, true}) { in test_MLM_contours() 276 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()
|
/third_party/skia/tests/ |
D | PathMeasureTest.cpp | 276 for (bool forceClosed : {false, true}) { in test_MLM_contours() 277 SkContourMeasureIter fact(path, forceClosed); in test_MLM_contours()
|
/third_party/flutter/engine/flutter/testing/dart/ |
D | path_test.dart | 132 // test with forceClosed 133 final PathMetrics simpleMetricsClosed = simpleHorizontalLine.computeMetrics(forceClosed: true);
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/compositor/ |
D | path.dart | 87 ui.PathMetrics computeMetrics({bool forceClosed = false}) {
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/ |
D | canvas.dart | 2097 /// If `forceClosed` is set to true, the contours of the path will be measured 2099 PathMetrics computeMetrics({bool forceClosed = false}) { 2100 return PathMetrics._(this, forceClosed); 2195 PathMetrics._(Path path, bool forceClosed) 2196 : _iterator = PathMetricIterator._(PathMetric._(path, forceClosed)); 2239 final bool forceClosed; 2242 PathMetric._(this.path, this.forceClosed); 2281 /// have been implied when using [Path.addRect]) or if `forceClosed` was
|
/third_party/flutter/engine/flutter/lib/ui/ |
D | painting.dart | 2168 /// If `forceClosed` is set to true, the contours of the path will be measured 2170 PathMetrics computeMetrics({bool forceClosed = false}) { 2171 return PathMetrics._(this, forceClosed); 2238 PathMetrics._(Path path, bool forceClosed) : 2239 _iterator = PathMetricIterator._(_PathMeasure(path, forceClosed)); 2293 /// have been implied when using [Path.addRect]) or if `forceClosed` was 2343 _PathMeasure(Path path, bool forceClosed) { 2345 _constructor(path, forceClosed); 2347 void _constructor(Path path, bool forceClosed) native 'PathMeasure_constructor';
|
/third_party/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 3177 new (path: Path, forceClosed: boolean, resScale: number): ContourMeasureIter;
|