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

1 2

  /external/chromium_org/third_party/skia/include/effects/
SkDashPathEffect.h 13 /** \class SkDashPathEffect
15 SkDashPathEffect is a subclass of SkPathEffect that implements dashing
17 class SK_API SkDashPathEffect : public SkPathEffect {
39 static SkDashPathEffect* Create(const SkScalar intervals[], int count,
41 return SkNEW_ARGS(SkDashPathEffect, (intervals, count, phase));
43 virtual ~SkDashPathEffect();
54 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDashPathEffect)
57 SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase);
59 explicit SkDashPathEffect(SkReadBuffer&);
  /external/chromium_org/third_party/skia/tests/
DashPathEffectTest.cpp 3 #include "SkDashPathEffect.h"
6 // crbug.com/348821 was rooted in SkDashPathEffect refusing to flatten and unflatten itself when
13 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, count, phase));
AsADashTest.cpp 11 #include "SkDashPathEffect.h"
25 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
36 SkAutoTUnref<SkDashPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase));
DrawPathTest.cpp 10 #include "SkDashPathEffect.h"
196 SkAutoTUnref<SkDashPathEffect> dontAssert(SkDashPathEffect::Create(vals, 4, -248.135982067f));
206 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, -10));
237 // in SkDashPathEffect::filterPath() due to single precision rounding.
246 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
266 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0))
    [all...]
PictureTest.cpp 12 #include "SkDashPathEffect.h"
760 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, 0));
825 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25);
839 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 25);
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDrawDash.cpp 11 #include "SkDashPathEffect.h"
34 return SkDashPathEffect::Create(intervals.begin(), count, phase);
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
SkPdfGraphicsState.cpp 10 #include "SkDashPathEffect.h"
28 paint->setPathEffect(SkDashPathEffect::Create(fDashArray,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
StrokeData.cpp 57 m_dash = adoptRef(SkDashPathEffect::Create(intervals.get(), count, dashOffset));
108 RefPtr<SkDashPathEffect> pathEffect = adoptRef(SkDashPathEffect::Create(intervals, 2, SkIntToScalar(phase)));
StrokeData.h 38 #include "third_party/skia/include/effects/SkDashPathEffect.h"
91 RefPtr<SkDashPathEffect> m_dash;
  /external/chromium_org/third_party/skia/gm/
dashcubics.cpp 12 #include "SkDashPathEffect.h"
50 SkPathEffect* pe = SkDashPathEffect::Create(intervals, 2, 0);
stroketext.cpp 10 #include "SkDashPathEffect.h"
58 p.setPathEffect(SkDashPathEffect::Create(intervals, SK_ARRAY_COUNT(intervals), phase))->unref();
dashing.cpp 11 #include "SkDashPathEffect.h"
24 p.setPathEffect(SkDashPathEffect::Create(intervals, 2, phase))->unref();
179 paint.setPathEffect(SkDashPathEffect::Create(vals, count, phase))->unref();
230 p.setPathEffect(SkDashPathEffect::Create(intervals, 2, phase))->unref();
patheffects.cpp 13 #include "SkDashPathEffect.h"
48 paint->setPathEffect(SkDashPathEffect::Create(inter, SK_ARRAY_COUNT(inter),
  /external/chromium_org/third_party/skia/src/effects/
SkDashPathEffect.cpp 8 #include "SkDashPathEffect.h"
14 SkDashPathEffect::SkDashPathEffect(const SkScalar intervals[], int count, SkScalar phase)
34 SkDashPathEffect::~SkDashPathEffect() {
38 bool SkDashPathEffect::filterPath(SkPath* dst, const SkPath& src,
158 bool SkDashPathEffect::asPoints(PointData* results,
347 SkPathEffect::DashType SkDashPathEffect::asADash(DashInfo* info) const {
358 void SkDashPathEffect::flatten(SkWriteBuffer& buffer) const {
363 SkFlattenable* SkDashPathEffect::CreateProc(SkReadBuffer& buffer)
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SamplePathUtils.cpp 12 #include "SkDashPathEffect.h"
68 SkAutoTUnref<SkDashPathEffect> dash(SkDashPathEffect::Create(intervals, 2, fPhase));
SampleDash.cpp 13 #include "SkDashPathEffect.h"
73 SkDashPathEffect dash(interval, len, 0);
SampleSlides.cpp 29 #include "SkDashPathEffect.h"
62 paint->setPathEffect(SkDashPathEffect::Create(inter, SK_ARRAY_COUNT(inter),
  /external/chromium_org/third_party/skia/src/ports/
SkGlobalInitialization_chromium.cpp 31 #include "SkDashPathEffect.h"
75 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDashPathEffect)
SkGlobalInitialization_default.cpp 31 #include "SkDashPathEffect.h"
75 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkDashPathEffect)
  /external/chromium_org/third_party/skia/bench/
DashBench.cpp 11 #include "SkDashPathEffect.h"
74 paint.setPathEffect(SkDashPathEffect::Create(fIntervals.begin(),
189 fPE.reset(SkDashPathEffect::Create(vals, 2, 0));
227 fPE.reset(SkDashPathEffect::Create(vals, 2, 0));
266 fPathEffect.reset(SkDashPathEffect::Create(vals, 2, SK_Scalar1));
326 fPathEffect.reset(SkDashPathEffect::Create(intervals,
392 fPathEffect.reset(SkDashPathEffect::Create(vals, 2, SK_Scalar1));
  /external/chromium_org/skia/ext/
vector_canvas_unittest.cc 20 #include "third_party/skia/include/effects/SkDashPathEffect.h"
734 new SkDashPathEffect(intervals, arraysize(intervals), 0));
754 new SkDashPathEffect(intervals, arraysize(intervals), 0));
772 new SkDashPathEffect(intervals, arraysize(intervals), 0));
788 new SkDashPathEffect(intervals, arraysize(intervals), 0));
  /external/chromium_org/skia/
skia_library.target.darwin-arm.mk 246 third_party/skia/src/effects/SkDashPathEffect.cpp \
skia_library.target.darwin-arm64.mk 246 third_party/skia/src/effects/SkDashPathEffect.cpp \
skia_library.target.darwin-mips.mk 246 third_party/skia/src/effects/SkDashPathEffect.cpp \
skia_library.target.darwin-mips64.mk 246 third_party/skia/src/effects/SkDashPathEffect.cpp \

Completed in 911 milliseconds

1 2