/external/skia/src/core/ |
D | SkPathEffect.cpp | 52 bool SkComposePathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkComposePathEffect 57 if (fPE1->filterPath(&tmp, src, width)) { in filterPath() 60 return fPE0->filterPath(dst, *ptr, width); in filterPath() 65 bool SkSumPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkSumPathEffect 68 return fPE0->filterPath(dst, src, width) | fPE1->filterPath(dst, src, width); in filterPath() 90 bool SkStrokePathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkStrokePathEffect
|
D | SkMaskFilter.cpp | 30 bool SkMaskFilter::filterPath(const SkPath& devPath, const SkMatrix& matrix, in filterPath() function in SkMaskFilter
|
D | SkScalerContext.cpp | 556 if (fPathEffect->filterPath(&effectPath, localPath, &width)) { in internalGetPath()
|
D | SkPaint.cpp | 1675 if (this->getPathEffect()->filterPath(&effectPath, src, &width)) { in getFillPath()
|
D | SkDraw.cpp | 950 paint.getMaskFilter()->filterPath(*devPathPtr, *fMatrix, *fClip, in drawPath()
|
/external/skia/include/core/ |
D | SkPathEffect.h | 43 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) = 0; 90 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width); 125 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
D | SkMaskFilter.h | 70 bool filterPath(const SkPath& devPath, const SkMatrix& devMatrix,
|
D | SkPaint.h | 899 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
/external/skia/include/effects/ |
D | Sk1DPathEffect.h | 29 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width); 67 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
D | SkDiscretePathEffect.h | 36 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
D | SkCornerPathEffect.h | 37 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
D | SkDashPathEffect.h | 39 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
D | Sk2DPathEffect.h | 30 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
|
/external/skia/src/effects/ |
D | Sk1DPathEffect.cpp | 21 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width) in filterPath() function in Sk1DPathEffect 79 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width) in filterPath() function in SkPath1DPathEffect 84 return this->INHERITED::filterPath(dst, src, width); in filterPath()
|
D | SkDiscretePathEffect.cpp | 36 bool SkDiscretePathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkDiscretePathEffect
|
D | Sk2DPathEffect.cpp | 44 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width) in filterPath() function in Sk2DPathEffect
|
D | SkCornerPathEffect.cpp | 46 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkCornerPathEffect
|
D | SkDashPathEffect.cpp | 85 bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath() function in SkDashPathEffect
|
/external/skia/samplecode/ |
D | ClockFaceView.cpp | 110 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) { in filterPath() function in InverseFillPE 203 pe->filterPath(&dstPath, path, &width); in drawdots()
|
D | SampleTextEffects.cpp | 201 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) { in filterPath() function in Line2DPathEffect 202 if (this->INHERITED::filterPath(dst, src, width)) { in filterPath()
|
D | SampleAll.cpp | 210 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) { in filterPath() function in Line2DPathEffect 211 if (this->INHERITED::filterPath(dst, src, width)) { in filterPath()
|
D | SampleSlides.cpp | 632 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) in filterPath() function in Line2DPathEffect 634 if (this->INHERITED::filterPath(dst, src, width)) in filterPath()
|