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

1 2 3

  /external/chromium_org/third_party/skia/src/core/
SkPathEffect.cpp 58 bool SkComposePathEffect::filterPath(SkPath* dst, const SkPath& src,
68 if (fPE1->filterPath(&tmp, src, rec, cullRect)) {
71 return fPE0->filterPath(dst, *ptr, rec, cullRect);
76 bool SkSumPathEffect::filterPath(SkPath* dst, const SkPath& src,
79 return fPE0->filterPath(dst, src, rec, cullRect) |
80 fPE1->filterPath(dst, src, rec, cullRect);
  /external/skia/src/core/
SkPathEffect.cpp 58 bool SkComposePathEffect::filterPath(SkPath* dst, const SkPath& src,
68 if (fPE1->filterPath(&tmp, src, rec, cullRect)) {
71 return fPE0->filterPath(dst, *ptr, rec, cullRect);
76 bool SkSumPathEffect::filterPath(SkPath* dst, const SkPath& src,
79 return fPE0->filterPath(dst, src, rec, cullRect) |
80 fPE1->filterPath(dst, src, rec, cullRect);
  /external/chromium_org/third_party/skia/include/effects/
SkCornerPathEffect.h 26 virtual bool filterPath(SkPath* dst, const SkPath& src,
SkDiscretePathEffect.h 25 virtual bool filterPath(SkPath* dst, const SkPath& src,
Sk1DPathEffect.h 19 virtual bool filterPath(SkPath* dst, const SkPath& src,
57 virtual bool filterPath(SkPath*, const SkPath&,
SkDashPathEffect.h 43 virtual bool filterPath(SkPath* dst, const SkPath& src,
Sk2DPathEffect.h 19 virtual bool filterPath(SkPath*, const SkPath&,
26 This is called once from filterPath, and provides the
64 virtual bool filterPath(SkPath* dst, const SkPath& src,
  /external/skia/include/effects/
SkCornerPathEffect.h 26 virtual bool filterPath(SkPath* dst, const SkPath& src,
SkDiscretePathEffect.h 25 virtual bool filterPath(SkPath* dst, const SkPath& src,
Sk1DPathEffect.h 19 virtual bool filterPath(SkPath* dst, const SkPath& src,
57 virtual bool filterPath(SkPath*, const SkPath&,
SkDashPathEffect.h 43 virtual bool filterPath(SkPath* dst, const SkPath& src,
Sk2DPathEffect.h 19 virtual bool filterPath(SkPath*, const SkPath&,
26 This is called once from filterPath, and provides the
64 virtual bool filterPath(SkPath* dst, const SkPath& src,
  /external/chromium_org/third_party/skia/include/core/
SkPathEffect.h 51 virtual bool filterPath(SkPath* dst, const SkPath& src,
123 including flattening them. It does nothing in filterPath, and is only useful
157 virtual bool filterPath(SkPath* dst, const SkPath& src,
176 Its filterPath() returns true if either of the effects succeeded.
188 virtual bool filterPath(SkPath* dst, const SkPath& src,
SkMaskFilter.h 172 bool filterPath(const SkPath& devPath, const SkMatrix& devMatrix,
  /external/skia/include/core/
SkPathEffect.h 51 virtual bool filterPath(SkPath* dst, const SkPath& src,
123 including flattening them. It does nothing in filterPath, and is only useful
157 virtual bool filterPath(SkPath* dst, const SkPath& src,
176 Its filterPath() returns true if either of the effects succeeded.
188 virtual bool filterPath(SkPath* dst, const SkPath& src,
SkMaskFilter.h 179 bool filterPath(const SkPath& devPath, const SkMatrix& devMatrix,
  /external/chromium_org/third_party/skia/src/effects/
Sk2DPathEffect.cpp 19 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
82 bool SkLine2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
84 if (this->INHERITED::filterPath(dst, src, rec, cullRect)) {
SkDiscretePathEffect.cpp 28 bool SkDiscretePathEffect::filterPath(SkPath* dst, const SkPath& src,
Sk1DPathEffect.cpp 14 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src,
71 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src,
75 return this->INHERITED::filterPath(dst, src, rec, cullRect);
SkCornerPathEffect.cpp 33 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
  /external/skia/src/effects/
Sk2DPathEffect.cpp 19 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
82 bool SkLine2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
84 if (this->INHERITED::filterPath(dst, src, rec, cullRect)) {
SkDiscretePathEffect.cpp 28 bool SkDiscretePathEffect::filterPath(SkPath* dst, const SkPath& src,
Sk1DPathEffect.cpp 14 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src,
71 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src,
75 return this->INHERITED::filterPath(dst, src, rec, cullRect);
SkCornerPathEffect.cpp 33 bool SkCornerPathEffect::filterPath(SkPath* dst, const SkPath& src,
  /external/skia/tests/
DrawPathTest.cpp 226 // in SkDashPathEffect::filterPath() due to single precision rounding.
263 REPORTER_ASSERT(reporter, !dash.filterPath(&filteredPath, path, &rec, NULL));

Completed in 672 milliseconds

1 2 3