Lines Matching refs:linePath
2029 SkPath linePath; in DEF_TEST() local
2030 linePath.moveTo(4, 4); in DEF_TEST()
2031 linePath.lineTo(4, 5); in DEF_TEST()
2035 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2039 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2043 make_TestCase(r, linePath, roundCap)->compare(r, in DEF_TEST()
2048 linePath.reset(); in DEF_TEST()
2049 linePath.moveTo(4, 4); in DEF_TEST()
2050 linePath.lineTo(5, 4); in DEF_TEST()
2052 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2055 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2058 make_TestCase(r, linePath, roundCap)->compare( in DEF_TEST()
2063 linePath.reset(); in DEF_TEST()
2064 linePath.moveTo(4, 4); in DEF_TEST()
2065 linePath.lineTo(4, 4); in DEF_TEST()
2067 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2070 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2073 make_TestCase(r, linePath, roundCap)->compare( in DEF_TEST()
2206 SkPath linePath; in DEF_TEST() local
2207 linePath.lineTo(10, 10); in DEF_TEST()
2208 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kNo)); in DEF_TEST()
2209 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kYes)); in DEF_TEST()