Lines Matching refs:forceClose
4121 #Method void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const
4129 for (bool forceClose : { false, true } ) {
4131 path.dump(nullptr, forceClose, dumpAsHex);
4416 #Method Iter(const SkPath& path, bool forceClose)
4468 #Method void setPath(const SkPath& path, bool forceClose)
4518 #SeeAlso Iter(const SkPath& path, bool forceClose)
4668 for (bool forceClose : { false, true } ) {
4671 SkPath::Iter iter(path, forceClose);
4672 SkDebugf("without close(), forceClose is %s: isClosedContour returns %s\n",
4673 forceClose ? "true " : "false", iter.isClosedContour() ? "true" : "false");
4675 iter.setPath(path, forceClose);
4676 SkDebugf("with close(), forceClose is %s: isClosedContour returns %s\n",
4677 forceClose ? "true " : "false", iter.isClosedContour() ? "true" : "false");
4681 without close(), forceClose is false: isClosedContour returns false
4682 with close(), forceClose is false: isClosedContour returns true
4683 without close(), forceClose is true : isClosedContour returns true
4684 with close(), forceClose is true : isClosedContour returns true
4688 #SeeAlso Iter(const SkPath& path, bool forceClose)