Home | History | Annotate | Download | only in tests

Lines Matching full:info

18     SkPathEffect::DashInfo info;
20 SkPathEffect::DashType dashType = pe->asADash(&info);
40 SkPathEffect::DashInfo info;
42 SkPathEffect::DashType dashType = pe->asADash(&info);
44 REPORTER_ASSERT(reporter, 4 == info.fCount);
45 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);
48 SkAutoTArray<SkScalar> intervals(info.fCount);
49 info.fIntervals = intervals.get();
50 pe->asADash(&info);
51 REPORTER_ASSERT(reporter, inIntervals[0] == info.fIntervals[0]);
52 REPORTER_ASSERT(reporter, inIntervals[1] == info.fIntervals[1]);
53 REPORTER_ASSERT(reporter, inIntervals[2] == info.fIntervals[2]);
54 REPORTER_ASSERT(reporter, inIntervals[3] == info.fIntervals[3]);
57 REPORTER_ASSERT(reporter, 4 == info.fCount);
58 REPORTER_ASSERT(reporter, SkScalarMod(phase, totalIntSum) == info.fPhase);