Searched refs:forceClose (Results 1 – 10 of 10) sorted by relevance
/external/skia/docs/examples/ |
D | Path_Iter_isClosedContour.cpp | 7 for (bool forceClose : { false, true } ) { in draw() 10 SkPath::Iter iter(path, forceClose); in draw() 12 forceClose ? "true " : "false", iter.isClosedContour() ? "true" : "false"); in draw() 14 iter.setPath(path, forceClose); in draw() 16 forceClose ? "true " : "false", iter.isClosedContour() ? "true" : "false"); in draw()
|
/external/skqp/include/core/ |
D | SkPath.h | 1426 Iter(const SkPath& path, bool forceClose); 1435 void setPath(const SkPath& path, bool forceClose); 1601 void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const;
|
/external/skia/include/core/ |
D | SkPath.h | 1456 Iter(const SkPath& path, bool forceClose); 1467 void setPath(const SkPath& path, bool forceClose);
|
/external/skqp/docs/ |
D | SkPath_Reference.bmh | 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"); [all …]
|
/external/skqp/src/core/ |
D | SkPath.cpp | 1915 SkPath::Iter::Iter(const SkPath& path, bool forceClose) { in Iter() argument 1916 this->setPath(path, forceClose); in Iter() 1919 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) { in setPath() argument 1929 fForceClose = SkToU8(forceClose); in setPath() 2197 void SkPath::dump(SkWStream* wStream, bool forceClose, bool dumpAsHex) const { in dump() argument 2199 Iter iter(*this, forceClose); in dump()
|
/external/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2396 Iter(const SkPath& path, bool forceClose); 2542 void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const; 2635 … Iter { Iter(); Iter(const SkPath& path, bool forceClose); void setPath(const SkPath& path, bool f… 2806 void setPath(const SkPath& path, bool forceClose);
|
/external/skia/src/core/ |
D | SkPath.cpp | 1681 SkPath::Iter::Iter(const SkPath& path, bool forceClose) { in Iter() argument 1682 this->setPath(path, forceClose); in Iter() 1685 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) { in setPath() argument 1695 fForceClose = SkToU8(forceClose); in setPath()
|
/external/skqp/site/user/api/ |
D | SkPath_Reference.md | 173 …m'>SkWStream</a>* <a href='SkStream_Reference#Stream'>stream</a>, bool forceClose, bool dumpAsHex)… 4667 …m'>SkWStream</a>* <a href='SkStream_Reference#Stream'>stream</a>, bool forceClose, bool dumpAsHex)… 4671 standard output. Set <a href='#SkPath_dump_forceClose'>forceClose</a> to true to get edges used to … 4680 <tr> <td><a name='SkPath_dump_forceClose'><code><strong>forceClose</strong></code></a></td> 4986 …f='SkPath_Reference#SkPath'>SkPath</a>& <a href='SkPath_Reference#Path'>path</a>, bool forceClose); 4987 …f='SkPath_Reference#SkPath'>SkPath</a>& <a href='SkPath_Reference#Path'>path</a>, bool forceClose); 5048 …ef='SkPath_Reference#SkPath'>SkPath</a>& <a href='SkPath_Reference#Path'>path</a>, bool forceClose) 5052 …Path_path'>path</a>. If <a href='#SkPath_Iter_const_SkPath_forceClose'>forceClose</a> is true, <a … 5060 …<tr> <td><a name='SkPath_Iter_const_SkPath_forceClose'><code><strong>forceClose</strong></code>… 5099 …ef='SkPath_Reference#SkPath'>SkPath</a>& <a href='SkPath_Reference#Path'>path</a>, bool forceClose) [all …]
|
/external/skqp/tests/ |
D | PathTest.cpp | 2915 const bool forceClose; in test_iter() member 2975 iter.setPath(p, gIterTests[i].forceClose); in test_iter()
|
/external/skia/tests/ |
D | PathTest.cpp | 2923 const bool forceClose; in test_iter() member 2959 iter.setPath(p, gIterTests[i].forceClose); in test_iter()
|