Lines Matching refs:pathStr
21 SkString pathStr; in testOpCubicsMain() local
41 pathStr.printf("static void cubicOp%d(skiatest::Reporter* reporter," in testOpCubicsMain()
43 pathStr.appendf(" SkPath path, pathB;\n"); in testOpCubicsMain()
44 pathStr.appendf(" path.setFillType(SkPathFillType::k%s);\n", in testOpCubicsMain()
47 pathStr.appendf(" path.moveTo(%d,%d);\n", state.fA, state.fB); in testOpCubicsMain()
48 pathStr.appendf(" path.cubicTo(%d,%d, %d,%d, %d,%d);\n", state.fC, state.fD, in testOpCubicsMain()
50 pathStr.appendf(" path.close();\n"); in testOpCubicsMain()
51 pathStr.appendf(" pathB.setFillType(SkPathFillType::k%s);\n", in testOpCubicsMain()
54 pathStr.appendf(" pathB.moveTo(%d,%d);\n", a, b); in testOpCubicsMain()
55 pathStr.appendf(" pathB.cubicTo(%d,%d, %d,%d, %d,%d);\n", c, d, in testOpCubicsMain()
57 pathStr.appendf(" pathB.close();\n"); in testOpCubicsMain()
58 pathStr.appendf(" testPathOp(reporter, path, pathB, %s, filename);\n", in testOpCubicsMain()
60 pathStr.appendf("}\n"); in testOpCubicsMain()
61 state.outputProgress(pathStr.c_str(), (SkPathOp) op); in testOpCubicsMain()