Lines Matching refs:areCusps
22 bool areCusps = false; in check_cubic_convex_180() local
27 int convex180N = GrPathUtils::findCubicConvex180Chops(p, convex180T, &areCusps); in check_cubic_convex_180()
29 if (!areCusps) { in check_cubic_convex_180()
38 int convex180N = GrPathUtils::findCubicConvex180Chops(p, convex180T, &areCusps); in check_cubic_convex_180()
61 REPORTER_ASSERT(r, !areCusps); in check_cubic_convex_180()
63 REPORTER_ASSERT(r, areCusps); in check_cubic_convex_180()
91 bool areCusps; in DEF_TEST() local
92 REPORTER_ASSERT(r, GrPathUtils::findCubicConvex180Chops(quad, T, &areCusps) == 0); in DEF_TEST()
96 REPORTER_ASSERT(r, GrPathUtils::findCubicConvex180Chops(cusp, T, &areCusps) == 1); in DEF_TEST()
97 REPORTER_ASSERT(r, areCusps == true); in DEF_TEST()
113 REPORTER_ASSERT(r, GrPathUtils::findCubicConvex180Chops(cusp, T, &areCusps) == 2); in DEF_TEST()
114 REPORTER_ASSERT(r, areCusps == false); in DEF_TEST()
119 REPORTER_ASSERT(r, GrPathUtils::findCubicConvex180Chops(cusp, T, &areCusps) == 1); in DEF_TEST()
120 REPORTER_ASSERT(r, areCusps == true); in DEF_TEST()