Lines Matching refs:dash
958 SkPaint dash; in test_null_dash() local
959 dash.setStyle(SkPaint::kStroke_Style); in test_null_dash()
960 dash.setStrokeWidth(1.f); in test_null_dash()
961 dash.setPathEffect(make_dash()); in test_null_dash()
969 TestCase dashCase(geo, dash, reporter); in test_null_dash()
1394 bool dash) -> int { in test_rrect() argument
1399 dash; in test_rrect()
1408 for (bool dash : {false, true}) { in test_rrect()
1409 sk_sp<SkPathEffect> pe = dash ? dashEffect : nullptr; in test_rrect()
1410 shapes[index(inverted, dir, start, style, dash)] = in test_rrect()
1538 for (bool dash : {false, true}) { in test_rrect()
1539 const GrShape& fillCase = shapes[index(inverted, dir, start, kFill, dash)]; in test_rrect()
1544 kStrokeAndFill, dash)]; in test_rrect()
1560 const GrShape& strokeCase = shapes[index(inverted, dir, start, kStroke, dash)]; in test_rrect()
1562 dash)]; in test_rrect()
1568 if (dash) { in test_rrect()
1639 SkPaint dash = stroke; in test_lines() local
1640 dash.setPathEffect(make_dash()); in test_lines()
1655 TestCase dashAB(r, lineAB, dash); in test_lines()
1656 TestCase dashBA(r, lineBA, dash); in test_lines()
1657 TestCase dashAC(r, lineAC, dash); in test_lines()
1704 TestCase dashInvAB(r, invLineAB, dash); in test_lines()