Lines Matching refs:two
218 bool OpDebug(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result
232 SkPathOpsDebug::DumpOp(one, two, op, testName);
235 op = gOpInverse[op][one.isInverseFillType()][two.isInverseFillType()];
236 SkPath::FillType fillType = gOutInverse[op][one.isInverseFillType()][two.isInverseFillType()]
238 SkScalar scaleFactor = SkTMax(ScaleFactor(one), ScaleFactor(two));
244 ScalePath(two, 1.f / scaleFactor, &scaledTwo);
248 subtrahend = &two;
322 bool Op(const SkPath& one, const SkPath& two, SkPathOp op, SkPath* result) {
325 if (!OpDebug(one, two, op, result SkDEBUGPARAMS(false) SkDEBUGPARAMS(nullptr))) {
326 SkPathOpsDebug::ReportOpFail(one, two, op);
329 SkPathOpsDebug::VerifyOp(one, two, op, *result);
333 return OpDebug(one, two, op, result SkDEBUGPARAMS(true) SkDEBUGPARAMS(nullptr));