HomeSort by relevance Sort by last modified time
    Searched refs:filterPath (Results 1 - 25 of 28) sorted by null

1 2

  /external/skia/include/effects/
SkDiscretePathEffect.h 36 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
SkCornerPathEffect.h 37 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
SkDashPathEffect.h 39 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
Sk1DPathEffect.h 29 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
67 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
Sk2DPathEffect.h 30 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
41 This is called once from filterPath, and provides the
  /external/skia/include/core/
SkPathEffect.h 43 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) = 0;
54 including flattening them. It does nothing in filterPath, and is only useful
90 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
111 Its filterPath() returns true if either of the effects succeeded.
125 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width);
SkMaskFilter.h 70 bool filterPath(const SkPath& devPath, const SkMatrix& devMatrix,
SkPaint.h     [all...]
  /external/skia/src/core/
SkPathEffect.cpp 52 bool SkComposePathEffect::filterPath(SkPath* dst, const SkPath& src,
57 if (fPE1->filterPath(&tmp, src, width)) {
60 return fPE0->filterPath(dst, *ptr, width);
65 bool SkSumPathEffect::filterPath(SkPath* dst, const SkPath& src,
68 return fPE0->filterPath(dst, src, width) | fPE1->filterPath(dst, src, width);
90 bool SkStrokePathEffect::filterPath(SkPath* dst, const SkPath& src,
SkMaskFilter.cpp 30 bool SkMaskFilter::filterPath(const SkPath& devPath, const SkMatrix& matrix,
SkScalerContext.cpp 556 if (fPathEffect->filterPath(&effectPath, localPath, &width)) {
SkPaint.cpp     [all...]
SkDraw.cpp 948 // how does filterPath() know to fill or hairline the path??? <mrr>
950 paint.getMaskFilter()->filterPath(*devPathPtr, *fMatrix, *fClip,
952 return; // filterPath() called the blitter, so we're done
    [all...]
  /external/skia/src/effects/
Sk1DPathEffect.cpp 21 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
79 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
84 return this->INHERITED::filterPath(dst, src, width);
SkDiscretePathEffect.cpp 36 bool SkDiscretePathEffect::filterPath(SkPath* dst, const SkPath& src,
Sk2DPathEffect.cpp 44 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
SkCornerPathEffect.cpp 46 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
SkDashPathEffect.cpp 85 bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src,
  /external/skia/samplecode/
ClockFaceView.cpp 110 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) {
203 pe->filterPath(&dstPath, path, &width);
SampleTextEffects.cpp 201 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) {
202 if (this->INHERITED::filterPath(dst, src, width)) {
SampleAll.cpp 210 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width) {
211 if (this->INHERITED::filterPath(dst, src, width)) {
SampleSlides.cpp 632 virtual bool filterPath(SkPath* dst, const SkPath& src, SkScalar* width)
634 if (this->INHERITED::filterPath(dst, src, width))
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 
  /prebuilt/linux-x86/swt/
swt.jar 

Completed in 243 milliseconds

1 2