/third_party/skia/src/core/ |
H A D | SkPathMeasure.cpp | 9 #include "include/core/SkPathMeasure.h" 11 SkPathMeasure::SkPathMeasure() {} in SkPathMeasure() function in SkPathMeasure 13 SkPathMeasure::SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale) in SkPathMeasure() function in SkPathMeasure 19 SkPathMeasure::~SkPathMeasure() {} in ~SkPathMeasure() 21 void SkPathMeasure::setPath(const SkPath* path, bool forceClosed) { in setPath() 26 SkScalar SkPathMeasure::getLength() { in getLength() 30 bool SkPathMeasure [all...] |
/third_party/skia/include/core/ |
H A D | SkPathMeasure.h | 15 class SK_API SkPathMeasure { class 17 SkPathMeasure(); 24 SkPathMeasure(const SkPath& path, bool forceClosed, SkScalar resScale = 1); 25 ~SkPathMeasure(); 84 SkPathMeasure(const SkPathMeasure&) = delete; 85 SkPathMeasure& operator=(const SkPathMeasure&) = delete;
|
/third_party/skia/src/effects/ |
H A D | Sk1DPathEffect.cpp | 9 #include "include/core/SkPathMeasure.h" 25 SkPathMeasure meas(src, false); 50 virtual SkScalar next(SkPath* dst, SkScalar dist, SkPathMeasure&) const = 0; 105 SkScalar next(SkPath*, SkScalar, SkPathMeasure&) const override; 136 SkPathMeasure& meas, SkScalar dist) { in morphpoints() 166 static void morphpath(SkPath* dst, const SkPath& src, SkPathMeasure& meas, in morphpath() 210 SkPathMeasure& meas) const { in next()
|
H A D | SkTrimPathEffect.cpp | 8 #include "include/core/SkPathMeasure.h" 22 SkPathMeasure measure(src, false); in add_segments() 60 SkPathMeasure meas(src, false);
|
H A D | SkDiscretePathEffect.cpp | 9 #include "include/core/SkPathMeasure.h" 80 SkPathMeasure meas(src, doFill);
|
/third_party/skia/tests/ |
H A D | PathMeasureTest.cpp | 8 #include "include/core/SkPathMeasure.h" 25 SkPathMeasure meas(path, false); in test_small_segment3() 41 SkPathMeasure meas(path, false); in test_small_segment2() 59 SkPathMeasure meas(path, false); in test_small_segment() 85 SkPathMeasure meas(path, true); in DEF_TEST() 211 SkPathMeasure stdm(p, false); in DEF_TEST() 227 SkPathMeasure meas(path, false); in DEF_TEST()
|
/third_party/skia/docs/examples/ |
H A D | pathmeasure.cpp | 11 SkPathMeasure measure(path, false); in REG_FIDDLE()
|
H A D | Path_addRRect_2.cpp | 17 SkPathMeasure pathMeasure(textPath, false); in REG_FIDDLE()
|
/third_party/skia/fuzz/ |
H A D | FuzzPathMeasure.cpp | 10 #include "include/core/SkPathMeasure.h" 29 SkPathMeasure measure(path, bits & 1, resScale); in DEF_FUZZ()
|
/third_party/skia/src/utils/ |
H A D | SkDashPath.cpp | 8 #include "include/core/SkPathMeasure.h" 315 SkScalar pathLength = SkPathMeasure(src, false, rec->getResScale()).getLength(); 364 SkPathMeasure meas(*srcPtr, false, rec->getResScale());
|
/third_party/skia/gm/ |
H A D | arcto.cpp | 14 #include "include/core/SkPathMeasure.h" 225 SkPathMeasure meas(path, false); in DEF_SIMPLE_GM()
|
H A D | overstroke.cpp | 27 #include "include/core/SkPathMeasure.h" 89 SkPathMeasure meas(path, false); in ribs_path()
|
H A D | addarc.cpp | 13 #include "include/core/SkPathMeasure.h" 101 SkPathMeasure meas(SkPathBuilder().addArc(oval, 0, deg).detach(), false); in DEF_SIMPLE_GM()
|
H A D | drawatlas.cpp | 20 #include "include/core/SkPathMeasure.h" 135 SkPathMeasure meas(path, false); in draw_text_on_path()
|
/third_party/skia/samplecode/ |
H A D | SampleQuadStroker.cpp | 16 #include "include/core/SkPathMeasure.h" 312 SkPathMeasure meas(path, false); in draw_ribs() 345 SkPathMeasure meas(path, false); in draw_t_divs()
|
H A D | SampleVariableWidthStroker.cpp | 12 #include "include/core/SkPathMeasure.h" 341 SkPathMeasure fMeas; 345 SkPathMeasure meas(fPath, false);
|