Lines Matching defs:tmp
3312 SkPath tmp;
3316 path.transform(m, &tmp);
3324 check_for_circle(reporter, tmp, false, dir);
3330 SkPath tmp;
3335 path.transform(m, &tmp);
3336 check_for_circle(reporter, tmp, true, dir);
3338 tmp.reset();
3343 path.transform(m, &tmp);
3344 check_for_circle(reporter, tmp, true, dir);
3351 SkPath tmp;
3354 path.transform(m, &tmp);
3360 check_for_circle(reporter, tmp, true, dir);
3362 check_for_circle(reporter, tmp, false, dir);
3370 SkPath tmp;
3374 path.transform(m, &tmp);
3381 check_for_circle(reporter, tmp, true, dir);
3387 SkPath tmp;
3391 path.transform(m, &tmp);
3400 check_for_circle(reporter, tmp, true, dir);
3406 SkPath tmp;
3411 path.transform(m, &tmp);
3413 check_for_circle(reporter, tmp, true, dir);
3538 SkPath tmp;
3539 path.transform(m, &tmp);
3542 REPORTER_ASSERT(reporter, SkPathPriv::IsOval(tmp, nullptr, &dir, &start));
3548 tmp.reset();
3549 path.transform(m, &tmp);
3551 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3555 tmp.reset();
3557 path.transform(m, &tmp);
3558 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3561 tmp.reset();
3562 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3565 tmp.reset();
3566 tmp.moveTo(0, 0);
3567 tmp.moveTo(SkIntToScalar(10), SkIntToScalar(10));
3568 REPORTER_ASSERT(reporter, !tmp.isOval(nullptr));
3579 tmp.reset();
3580 tmp.addOval(rect);
3581 path = tmp;