Lines Matching refs:linePath
2013 SkPath linePath; in DEF_TEST() local
2014 linePath.moveTo(4, 4); in DEF_TEST()
2015 linePath.lineTo(4, 5); in DEF_TEST()
2019 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2023 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2027 make_TestCase(r, linePath, roundCap)->compare(r, in DEF_TEST()
2032 linePath.reset(); in DEF_TEST()
2033 linePath.moveTo(4, 4); in DEF_TEST()
2034 linePath.lineTo(5, 4); in DEF_TEST()
2036 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2039 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2042 make_TestCase(r, linePath, roundCap)->compare( in DEF_TEST()
2047 linePath.reset(); in DEF_TEST()
2048 linePath.moveTo(4, 4); in DEF_TEST()
2049 linePath.lineTo(4, 4); in DEF_TEST()
2051 make_TestCase(r, linePath, buttCap)->compare( in DEF_TEST()
2054 make_TestCase(r, linePath, squareCap)->compare( in DEF_TEST()
2057 make_TestCase(r, linePath, roundCap)->compare( in DEF_TEST()
2190 SkPath linePath; in DEF_TEST() local
2191 linePath.lineTo(10, 10); in DEF_TEST()
2192 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kNo)); in DEF_TEST()
2193 geos.emplace_back(new PathGeo(linePath, PathGeo::Invert::kYes)); in DEF_TEST()