/third_party/flutter/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()
|
D | Path_dump.cpp | 9 for (bool forceClose : { false, true } ) { in draw() 11 path.dump(nullptr, forceClose, dumpAsHex); in draw()
|
/third_party/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()
|
/third_party/flutter/skia/include/core/ |
D | SkPath.h | 1423 Iter(const SkPath& path, bool forceClose); 1432 void setPath(const SkPath& path, bool forceClose); 1587 void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const;
|
/third_party/skia/include/core/ |
D | SkPath.h | 1456 Iter(const SkPath& path, bool forceClose); 1467 void setPath(const SkPath& path, bool forceClose);
|
/third_party/flutter/skia/src/core/ |
D | SkPath.cpp | 1943 SkPath::Iter::Iter(const SkPath& path, bool forceClose) { in Iter() argument 1944 this->setPath(path, forceClose); in Iter() 1947 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) { in setPath() argument 1957 fForceClose = SkToU8(forceClose); in setPath() 2142 void SkPath::dump(SkWStream* wStream, bool forceClose, bool dumpAsHex) const { in dump() argument 2144 Iter iter(*this, forceClose); in dump()
|
/third_party/flutter/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2422 Iter(const SkPath& path, bool forceClose); 2569 void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const; 2662 … Iter { Iter(); Iter(const SkPath& path, bool forceClose); void setPath(const SkPath& path, bool f… 2841 void setPath(const SkPath& path, bool forceClose);
|
/third_party/skia/tools/fiddle/ |
D | documumentation_examples_map.txt | 2388 Iter(const SkPath& path, bool forceClose); 2534 void dump(SkWStream* stream, bool forceClose, bool dumpAsHex) const; 2627 … Iter { Iter(); Iter(const SkPath& path, bool forceClose); void setPath(const SkPath& path, bool f… 2798 void setPath(const SkPath& path, bool forceClose);
|
/third_party/skia/src/core/ |
D | SkPath.cpp | 1689 SkPath::Iter::Iter(const SkPath& path, bool forceClose) { in Iter() argument 1690 this->setPath(path, forceClose); in Iter() 1693 void SkPath::Iter::setPath(const SkPath& path, bool forceClose) { in setPath() argument 1703 fForceClose = SkToU8(forceClose); in setPath()
|
/third_party/flutter/skia/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 …]
|
/third_party/flutter/skia/tests/ |
D | PathTest.cpp | 2924 const bool forceClose; in test_iter() member 2960 iter.setPath(p, gIterTests[i].forceClose); in test_iter()
|
/third_party/skia/tests/ |
D | PathTest.cpp | 2922 const bool forceClose; in test_iter() member 2958 iter.setPath(p, gIterTests[i].forceClose); in test_iter()
|