/third_party/skia/tests/ |
H A D | SkPathRangeIterTest.cpp | 21 kClose = (int)SkPathVerb::kClose, in DEF_TEST() member in Verb 29 Verb::kClose, in DEF_TEST() 35 Verb::kClose, in DEF_TEST() 84 case Verb::kClose: in DEF_TEST() 131 case Verb::kClose: in DEF_TEST()
|
H A D | SubsetPath.cpp | 77 case SkPathVerb::kClose: in SubsetContours() 130 case SkPathVerb::kClose: in getSubsetPath() 161 case SkPathVerb::kClose: in SubsetVerbs() 218 case SkPathVerb::kClose: in getSubsetPath()
|
H A D | PathOpsTestCommon.cpp | 194 case SkPathVerb::kClose: 240 case SkPathVerb::kClose: in CubicPathToSimple()
|
H A D | PathBuilderTest.cpp | 82 case SkPathVerb::kClose: in check_points()
|
H A D | PathTest.cpp | 999 case SkPathVerb::kClose: in test_poly() 3111 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose); in test_range_iter() 3121 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose); in test_range_iter() 3137 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose); in test_range_iter() 3166 } while (lastWasClose && nextVerb == SkPathVerb::kClose); in test_range_iter() 3226 case SkPathVerb::kClose: in test_range_iter() 3279 case SkPathVerb::kClose: in test_range_iter() 3810 REPORTER_ASSERT(reporter, v == SkPathVerb::kClose); in check_close() 4547 constexpr SkPath::Verb kClose = SkPath::kClose_Verb; in test_skbug_6947() local 4548 SkPath::Verb verbs[] = {kMove, kLine, kLine, kLine, kLine, kLine, kLine, kLine, kClose, in test_skbug_6947() [all...] |
/third_party/node/deps/undici/src/lib/ |
H A D | proxy-agent.js | 3 const { kProxy, kClose, kDestroy, kInterceptors } = require('./core/symbols') 141 async [kClose] () {
|
/third_party/skia/src/utils/ |
H A D | SkCustomTypeface.cpp | 257 kClose, enumerator 269 case SkPathVerb::kClose: verbs.push_back(kClose); break; in compress_write() 308 case SkPathVerb::kClose: break; in compress_write()
|
H A D | SkShadowTessellator.cpp | 143 static constexpr SkScalar kClose = (SK_Scalar1 / 16); in duplicate_pt() local 144 static constexpr SkScalar kCloseSqd = kClose * kClose; in duplicate_pt()
|
/third_party/node/deps/undici/src/lib/mock/ |
H A D | mock-symbols.js | 16 kClose: Symbol('close'),
|
/third_party/skia/include/core/ |
H A D | SkPathTypes.h | 56 kClose //!< SkPath::RawIter returns 0 points
|
H A D | SkPath.h | 1053 kMove, kLine, kLine, kLine, kClose 1424 kClose_Verb = static_cast<int>(SkPathVerb::kClose), 1578 case SkPathVerb::kClose: return 0; in pts_advance_after_verb() 1589 case SkPathVerb::kClose: return -1; in pts_backset_for_verb()
|
/third_party/node/deps/undici/src/lib/core/ |
H A D | symbols.js | 2 kClose: Symbol('close'),
|
/third_party/skia/src/gpu/ops/ |
H A D | AAConvexPathRenderer.cpp | 196 static const SkScalar kClose = (SK_Scalar1 / 16); member 197 static const SkScalar kCloseSqd = kClose * kClose; 215 if (SkScalarAbs(data->fLineNormal.dot(pt) + data->fLineC) > kClose) { in update_degenerate_test()
|
/third_party/skia/src/core/ |
H A D | SkPathBuilder.cpp | 63 case SkPathVerb::kClose: this->close(); break; in operator =() 152 fVerbs.push_back((uint8_t)SkPathVerb::kClose); in close() 222 const bool isClosed = (stop[-1] == (uint8_t)SkPathVerb::kClose); in make() 856 case SkPathVerb::kClose: in privateReverseAddPath()
|
H A D | SkPath.cpp | 300 if (verb == SkPathVerb::kClose || (segmentCount > 0 && verb == SkPathVerb::kMove)) { in conservativelyContainsRect() 1396 if ((SkPathVerb)fPathRef->verbsEnd()[-1] == SkPathVerb::kClose) { in addPath() 1437 case SkPathVerb::kClose: in addPath() 1852 case SkPathVerb::kClose: numPts = 0; break; in next() 2322 if (verb == SkPathVerb::kClose || verb == SkPathVerb::kMove) { in computeConvexity() 3153 case SkPathVerb::kClose: in IsSimpleRect() 3362 case SkPathVerb::kClose: in computeTightBounds() 3429 case SkPathVerb::kClose: in sk_path_analyze_verbs()
|
/third_party/skia/src/gpu/tessellate/ |
H A D | Tessellation.cpp | 117 case SkPathVerb::kClose: in PreChopPathCurves()
|
H A D | MiddleOutPolygonTriangulator.h | 227 case SkPathVerb::kClose: in nextStack()
|
H A D | StrokeIterator.h | 100 case SkPathVerb::kClose: in next()
|
H A D | PathWedgeTessellator.cpp | 230 case SkPathVerb::kClose: { in writePatches()
|
/third_party/skia/src/gpu/ |
H A D | GrDistanceFieldGenFromVector.cpp | 126 static const double kClose = (SK_Scalar1 / 16.0); variable 127 static const double kCloseSqd = kClose * kClose;
|
/third_party/skia/src/gpu/geometry/ |
H A D | GrAAConvexTessellator.cpp | 23 static const SkScalar kClose = (SK_Scalar1 / 16); variable 24 static const SkScalar kCloseSqd = kClose * kClose; 71 if (*accumError + distBToLineAC >= kClose || aToC.dot(b - a) <= 0.f || aToC.dot(c - b) <= 0.f) { in points_are_colinear_and_b_is_middle()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | perf-jit.cc | 77 kClose = 3, enumerator
|
/third_party/skia/samplecode/ |
H A D | SamplePathTessellators.cpp | 318 case SkPathVerb::kClose: in update_weight()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsAsWinding.cpp | 352 case SkPathVerb::kClose: in reverseMarkedContours()
|
/third_party/skia/tools/fonts/ |
H A D | create_test_font.cpp | 146 case SkPathVerb::kClose: in output_path_data()
|