Lines Matching refs:platTriangle
1090 SkPath platTriangle; in test_path_crbug389050() local
1091 platTriangle.moveTo(0, 0); in test_path_crbug389050()
1092 platTriangle.lineTo(200, 0); in test_path_crbug389050()
1093 platTriangle.lineTo(100, 0.04f); in test_path_crbug389050()
1094 platTriangle.close(); in test_path_crbug389050()
1095 platTriangle.getConvexity(); in test_path_crbug389050()
1096 check_direction(reporter, platTriangle, SkPath::kCW_Direction); in test_path_crbug389050()
1098 platTriangle.reset(); in test_path_crbug389050()
1099 platTriangle.moveTo(0, 0); in test_path_crbug389050()
1100 platTriangle.lineTo(200, 0); in test_path_crbug389050()
1101 platTriangle.lineTo(100, 0.03f); in test_path_crbug389050()
1102 platTriangle.close(); in test_path_crbug389050()
1103 platTriangle.getConvexity(); in test_path_crbug389050()
1104 check_direction(reporter, platTriangle, SkPath::kCW_Direction); in test_path_crbug389050()