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 SkPath::ConvertToNonInverseFillType(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(SkPath::ConvertToNonInverseFillType(pathB.getFillType())); in check_equivalence()
203 REPORTER_ASSERT(r, pathB.isConvex()); in check_equivalence()
2072 auto compare = [r, &paints] (const SkPath& pathA, const SkPath& pathB, in DEF_TEST()
2075 SkPath volatileB = pathB; in DEF_TEST()
2083 TestCase caseB(PathGeo(pathB, invert), paint, r); in DEF_TEST()
2090 SkPath pathB; in DEF_TEST() local
2096 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2097 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2098 compare(pathA, pathB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2101 pathB.reset(); in DEF_TEST()
2102 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2103 pathB.conicTo(21.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2104 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2107 pathB.reset(); in DEF_TEST()
2108 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2109 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2110 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2113 pathB.reset(); in DEF_TEST()
2114 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2115 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2116 pathB.lineTo(50.f, 50.f); in DEF_TEST()
2117 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2120 pathB.reset(); in DEF_TEST()
2121 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2122 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2123 pathB.close(); in DEF_TEST()
2124 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()