Lines Matching refs:invert
432 PathGeo(const SkPath& path, Invert invert) : fPath(path) {
434 if (Invert::kYes == invert) {
500 Invert invert)
501 : PathGeo(path, invert)
506 Invert invert)
507 : RRectPathGeo(path, SkRRect::MakeRect(equivalentRect), rrectForStroke, invert) {}
1381 static sk_sp<SkPathEffect> Make(bool invert) {
1382 return sk_sp<SkPathEffect>(new EmptyPathEffect(invert));
1403 EmptyPathEffect(bool invert) : fInvert(invert) {}
2097 for (PathGeo::Invert invert : {PathGeo::Invert::kNo, PathGeo::Invert::kYes}) {
2098 TestCase caseA(PathGeo(pathA, invert), paint, r);
2099 TestCase caseB(PathGeo(pathB, invert), paint, r);