• Home
  • Raw
  • Download

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()
2031 auto compare = [r, &paints] (const SkPath& pathA, const SkPath& pathB, in DEF_TEST()
2034 SkPath volatileB = pathB; in DEF_TEST()
2042 TestCase caseB(PathGeo(pathB, invert), paint, r); in DEF_TEST()
2049 SkPath pathB; in DEF_TEST() local
2055 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2056 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2057 compare(pathA, pathB, TestCase::kAllSame_ComparisonExpecation); in DEF_TEST()
2060 pathB.reset(); in DEF_TEST()
2061 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2062 pathB.conicTo(21.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2063 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2066 pathB.reset(); in DEF_TEST()
2067 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2068 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2069 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2072 pathB.reset(); in DEF_TEST()
2073 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2074 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.6f); in DEF_TEST()
2075 pathB.lineTo(50.f, 50.f); in DEF_TEST()
2076 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()
2079 pathB.reset(); in DEF_TEST()
2080 pathB.lineTo(10.f, 10.f); in DEF_TEST()
2081 pathB.conicTo(20.f, 20.f, 20.f, 30.f, 0.7f); in DEF_TEST()
2082 pathB.close(); in DEF_TEST()
2083 compare(pathA, pathB, TestCase::kAllDifferent_ComparisonExpecation); in DEF_TEST()