Lines Matching defs:filename
236 int comparePaths(skiatest::Reporter* reporter, const char* filename, const SkPath& one,
257 SkDebugf("static void %s_%s(skiatest::Reporter* reporter, const char* filename) {\n",
263 SkDebugf(" testPathOp(reporter, path, pathB, %s, filename);\n", opStrs[shapeOp]);
461 static bool inner_simplify(skiatest::Reporter* reporter, const SkPath& path, const char* filename,
464 if (check_for_duplicate_names(filename)) {
471 fprintf(PathOpsDebug::gOut, "\"%s\": {\n", filename);
478 SkDebugf("%s did not expect %s failure\n", __FUNCTION__, filename);
488 SkDebugf("%s %s unexpected success\n", __FUNCTION__, filename);
497 int errors = comparePaths(reporter, filename, path, out, bitmap);
500 SkDebugf("%s failing test %s now succeeds\n", __FUNCTION__, filename);
511 bool testSimplify(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
512 return inner_simplify(reporter, path, filename, ExpectSuccess::kYes, SkipAssert::kNo,
516 bool testSimplifyFuzz(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
517 return inner_simplify(reporter, path, filename, ExpectSuccess::kFlaky, SkipAssert::kYes,
521 bool testSimplifyCheck(skiatest::Reporter* reporter, const SkPath& path, const char* filename,
523 return inner_simplify(reporter, path, filename, checkFail ?
527 bool testSimplifyFail(skiatest::Reporter* reporter, const SkPath& path, const char* filename) {
528 return inner_simplify(reporter, path, filename,
677 void (*firstTest)(skiatest::Reporter* , const char* filename),
678 void (*skipTest)(skiatest::Reporter* , const char* filename),
679 void (*stopTest)(skiatest::Reporter* , const char* filename), bool reverse) {