Home | History | Annotate | Download | only in tests

Lines Matching refs:info

16     SkPathEffect::DashInfo info;
18 SkPathEffect::DashType dashType = pe->asADash(&info);
38 SkPathEffect::DashInfo info;
40 SkPathEffect::DashType dashType = pe->asADash(&info);
42 REPORTER_ASSERT(reporter, 4 == info.fCount);
43 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
46 SkAutoTArray<SkScalar> intervals(info.fCount);
47 info.fIntervals = intervals.get();
48 pe->asADash(&info);
49 REPORTER_ASSERT(reporter, inIntervals[0] == info.fIntervals[0]);
50 REPORTER_ASSERT(reporter, inIntervals[1] == info.fIntervals[1]);
51 REPORTER_ASSERT(reporter, inIntervals[2] == info.fIntervals[2]);
52 REPORTER_ASSERT(reporter, inIntervals[3] == info.fIntervals[3]);
55 REPORTER_ASSERT(reporter, 4 == info.fCount);
56 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);