Home | History | Annotate | Download | only in pathops

Lines Matching defs:file

5  * found in the LICENSE file.
193 static void dump_path(FILE* file, const SkPath& path, bool force, bool dumpAsHex) {
197 fprintf(file, "%.*s\n", (int) data->size(), data->data());
204 FILE* file = fopen("/Users/caryclark/Documents/svgop.txt", "w");
206 FILE* file = fopen("/usr/local/google/home/caryclark/Documents/svgop.txt", "w");
208 fprintf(file,
211 fprintf(file, " SkPath path;\n");
212 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", one.getFillType());
213 dump_path(file, one, false, true);
214 fprintf(file, " SkPath path1(path);\n");
215 fprintf(file, " path.reset();\n");
216 fprintf(file, " path.setFillType((SkPath::FillType) %d);\n", two.getFillType());
217 dump_path(file, two, false, true);
218 fprintf(file, " SkPath path2(path);\n");
219 fprintf(file, " testPathOp(reporter, path1, path2, (SkPathOp) %d, filename);\n", op);
220 fprintf(file, "}\n");
221 fclose(file);