Home
last modified time | relevance | path

Searched refs:forceClose (Results 1 – 10 of 10) sorted by relevance

/external/skia/docs/examples/
DPath_Iter_isClosedContour.cpp7 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/
DSkPath.h1426 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/
DSkPath.h1456 Iter(const SkPath& path, bool forceClose);
1467 void setPath(const SkPath& path, bool forceClose);
/external/skqp/docs/
DSkPath_Reference.bmh4121 #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/
DSkPath.cpp1915 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/
Ddocumumentation_examples_map.txt2396 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/
DSkPath.cpp1681 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/
DSkPath_Reference.md173 …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/
DPathTest.cpp2915 const bool forceClose; in test_iter() member
2975 iter.setPath(p, gIterTests[i].forceClose); in test_iter()
/external/skia/tests/
DPathTest.cpp2923 const bool forceClose; in test_iter() member
2959 iter.setPath(p, gIterTests[i].forceClose); in test_iter()