Home | History | Annotate | Download | only in tests

Lines Matching refs:two

379     SkPath one, two;
381 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction);
382 testPathOp(reporter, one, two, kIntersect_SkPathOp, filename);
386 SkPath one, two;
388 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction);
389 testPathOp(reporter, one, two, kUnion_SkPathOp, filename);
393 SkPath one, two;
395 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction);
396 testPathOp(reporter, one, two, kDifference_SkPathOp, filename);
400 SkPath one, two;
402 two.addRect(3, 3, 9, 9, SkPath::kCW_Direction);
403 testPathOp(reporter, one, two, kXOR_SkPathOp, filename);
407 SkPath one, two;
409 two.addRect(0, 3, 9, 9, SkPath::kCW_Direction);
410 testPathOp(reporter, one, two, kIntersect_SkPathOp, filename);
414 SkPath one, two;
416 two.addRect(0, 3, 9, 9, SkPath::kCW_Direction);
417 testPathOp(reporter, one, two, kUnion_SkPathOp, filename);
421 SkPath one, two;
423 two.addRect(0, 3, 9, 9, SkPath::kCW_Direction);
424 testPathOp(reporter, one, two, kDifference_SkPathOp, filename);
428 SkPath one, two;
430 two.addRect(0, 3, 9, 9, SkPath::kCW_Direction);
431 testPathOp(reporter, one, two, kXOR_SkPathOp, filename);
5570 SkPath two;
5571 two.setFillType(SkPath::kWinding_FillType);
5572 two.moveTo(0, 0);
5573 two.lineTo(0, 50);
5574 two.lineTo(4.29497e+09f, 50);
5576 REPORTER_ASSERT(reporter, !Op(one, two, kIntersect_SkPathOp, &dummy));