Lines Matching defs:one
15 sk_sp<SkPathEffect> SkMergePathEffect::Make(sk_sp<SkPathEffect> one, sk_sp<SkPathEffect> two,
17 return sk_sp<SkPathEffect>(new SkOpPE(std::move(one), std::move(two), op));
20 SkOpPE::SkOpPE(sk_sp<SkPathEffect> one, sk_sp<SkPathEffect> two, SkPathOp op)
21 : fOne(std::move(one)), fTwo(std::move(two)), fOp(op) {}
25 SkPath one, two;
27 if (!fOne->filterPath(&one, src, rec, cull, ctm)) {
31 one = src;
40 return Op(one, two, fOp, dst);
65 // (one - two) conservatively leaves one's bounds unmodified
68 // (two - one) conservatively leaves two's bounds unmodified
88 auto one = buffer.readPathEffect();
91 return buffer.isValid() ? SkMergePathEffect::Make(std::move(one), std::move(two), op) : nullptr;
201 // This one is weird, since we exist to allow this paint-style to go away. If we see it,