Lines Matching refs:pathB
133 SkPath pathA, pathB; in check_equivalence() local
135 b.asPath(&pathB); in check_equivalence()
140 if (pathA.isInverseFillType() != pathB.isInverseFillType()) { in check_equivalence()
149 SkPathFillType_ConvertToNonInverse(pathB.getFillType())) { in check_equivalence()
158 REPORTER_ASSERT(r, paths_fill_same(pathA, pathB)); in check_equivalence()
162 SkPath pB = pathB; in check_equivalence()
167 pB.setFillType(SkPathFillType_ConvertToNonInverse(pathB.getFillType())); in check_equivalence()
204 REPORTER_ASSERT(r, pathB.isConvex()); in check_equivalence()
2088 auto compare = [r, &paints] (const SkPath& pathA, const SkPath& pathB, in DEF_TEST()
2091 SkPath volatileB = pathB; in DEF_TEST()
2099 TestCase caseB(PathGeo(pathB, invert), paint, r); in DEF_TEST()
2106 SkPath pathB; in DEF_TEST() local
2112 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2113 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2114 compare(pathA, pathB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2117 pathB.reset(); in DEF_TEST()
2118 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2119 pathB.conicTo(21.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2120 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2123 pathB.reset(); in DEF_TEST()
2124 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2125 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2126 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2129 pathB.reset(); in DEF_TEST()
2130 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2131 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2132 pathB.lineTo(50.f, 50.f); in DEF_TEST()
2133 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2136 pathB.reset(); in DEF_TEST()
2137 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2138 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2139 pathB.close(); in DEF_TEST()
2140 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()