Lines Matching full:forceclose
116 The iterator does more cleanup, especially if forceClose == true
119 3. if we encounter Move without a preceeding Close, and forceClose is true, goto #2
1705 SkPath::Iter::Iter(const SkPath& path, bool forceClose) {
1706 this->setPath(path, forceClose);
1709 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) {
1716 fForceClose = SkToU8(forceClose);
2111 void SkPath::dump(bool forceClose, const char title[]) const {
2112 Iter iter(*this, forceClose);
2116 SkDebugf("path: forceClose=%s %s\n", forceClose ? "true" : "false",