Lines Matching defs:second
145 (e.g. first(path) + second(path))
146 The reference counts for first and second are both incremented in the constructor,
149 static sk_sp<SkPathEffect> Make(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) {
151 return second;
153 if (!second) {
156 return sk_sp<SkPathEffect>(new SkSumPathEffect(first, second));
159 SkSumPathEffect(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second)
160 : INHERITED(first, second) {}
195 sk_sp<SkPathEffect> SkPathEffect::MakeSum(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) {
196 return SkSumPathEffect::Make(std::move(first), std::move(second));