Lines Matching refs:pathB
132 SkPath pathA, pathB; in check_equivalence() local
134 b.asPath(&pathB); in check_equivalence()
139 if (pathA.isInverseFillType() != pathB.isInverseFillType()) { in check_equivalence()
148 SkPath::ConvertToNonInverseFillType(pathB.getFillType())) { in check_equivalence()
157 REPORTER_ASSERT(r, paths_fill_same(pathA, pathB)); in check_equivalence()
161 SkPath pB = pathB; in check_equivalence()
166 pB.setFillType(SkPath::ConvertToNonInverseFillType(pathB.getFillType())); in check_equivalence()
202 REPORTER_ASSERT(r, pathB.isConvex()); in check_equivalence()
2059 auto compare = [r, &paints] (const SkPath& pathA, const SkPath& pathB, in DEF_TEST()
2062 SkPath volatileB = pathB; in DEF_TEST()
2070 TestCase caseB(PathGeo(pathB, invert), paint, r); in DEF_TEST()
2077 SkPath pathB; in DEF_TEST() local
2083 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2084 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2085 compare(pathA, pathB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2088 pathB.reset(); in DEF_TEST()
2089 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2090 pathB.conicTo(21.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2091 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2094 pathB.reset(); in DEF_TEST()
2095 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2096 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2097 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2100 pathB.reset(); in DEF_TEST()
2101 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2102 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2103 pathB.lineTo(50.f, 50.f); 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.7f); in DEF_TEST()
2110 pathB.close(); in DEF_TEST()
2111 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()