Lines Matching refs:SkPathEffect
15 SkAutoTUnref<SkPathEffect> pe(SkCornerPathEffect::Create(1.0)); in DEF_TEST()
16 SkPathEffect::DashInfo info; in DEF_TEST()
18 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
19 REPORTER_ASSERT(reporter, SkPathEffect::kNone_DashType == dashType); in DEF_TEST()
25 SkAutoTUnref<SkPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase)); in DEF_TEST()
27 SkPathEffect::DashType dashType = pe->asADash(nullptr); in DEF_TEST()
28 REPORTER_ASSERT(reporter, SkPathEffect::kDash_DashType == dashType); in DEF_TEST()
36 SkAutoTUnref<SkPathEffect> pe(SkDashPathEffect::Create(inIntervals, 4, phase)); in DEF_TEST()
38 SkPathEffect::DashInfo info; in DEF_TEST()
40 SkPathEffect::DashType dashType = pe->asADash(&info); in DEF_TEST()
41 REPORTER_ASSERT(reporter, SkPathEffect::kDash_DashType == dashType); in DEF_TEST()