Lines Matching refs:pathStr
23 SkString pathStr; in testOpCubicsMain() local
43 pathStr.printf("static void cubicOp%d(skiatest::Reporter* reporter," in testOpCubicsMain()
45 pathStr.appendf(" SkPath path, pathB;\n"); in testOpCubicsMain()
46 pathStr.appendf(" path.setFillType(SkPath::k%s_FillType);\n", in testOpCubicsMain()
49 pathStr.appendf(" path.moveTo(%d,%d);\n", state.fA, state.fB); in testOpCubicsMain()
50 pathStr.appendf(" path.cubicTo(%d,%d, %d,%d, %d,%d);\n", state.fC, state.fD, in testOpCubicsMain()
52 pathStr.appendf(" path.close();\n"); in testOpCubicsMain()
53 pathStr.appendf(" pathB.setFillType(SkPath::k%s_FillType);\n", in testOpCubicsMain()
56 pathStr.appendf(" pathB.moveTo(%d,%d);\n", a, b); in testOpCubicsMain()
57 pathStr.appendf(" pathB.cubicTo(%d,%d, %d,%d, %d,%d);\n", c, d, in testOpCubicsMain()
59 pathStr.appendf(" pathB.close();\n"); in testOpCubicsMain()
60 pathStr.appendf(" testPathOp(reporter, path, pathB, %s, filename);\n", in testOpCubicsMain()
62 pathStr.appendf("}\n"); in testOpCubicsMain()
63 state.outputProgress(pathStr.c_str(), (SkPathOp) op); in testOpCubicsMain()