/third_party/skia/tests/ |
H A D | SkPathRangeIterTest.cpp | 16 kMove = (int)SkPathVerb::kMove, in DEF_TEST() member in Verb 32 Verb::kMove, in DEF_TEST() 36 Verb::kMove, in DEF_TEST() 37 Verb::kMove in DEF_TEST() 59 case Verb::kMove: in DEF_TEST() 102 case Verb::kMove: in DEF_TEST()
|
H A D | SubsetPath.cpp | 69 case SkPathVerb::kMove: in SubsetContours() 108 case SkPathVerb::kMove: in getSubsetPath() 153 case SkPathVerb::kMove: in SubsetVerbs() 196 case SkPathVerb::kMove: in getSubsetPath()
|
H A D | PathOpsTestCommon.cpp | 173 case SkPathVerb::kMove: 209 case SkPathVerb::kMove: in CubicPathToSimple()
|
H A D | PathBuilderTest.cpp | 66 case SkPathVerb::kMove: in check_points() 241 pts[0] = {0, 0}; vbs[0] = (uint8_t)SkPathVerb::kMove; in DEF_TEST()
|
H A D | PathTest.cpp | 979 case SkPathVerb::kMove: in test_poly() 2259 case SkPathVerb::kMove: in test_is_closed_rect() 3053 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3066 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3072 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3078 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3105 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3115 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3125 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 3131 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove); in test_range_iter() 4545 constexpr SkPath::Verb kMove = SkPath::kMove_Verb; test_skbug_6947() local [all...] |
/third_party/skia/samplecode/ |
H A D | Sample.cpp | 81 case skui::InputState::kMove: in mouse() 85 fClick->fState = skui::InputState::kMove; in mouse()
|
H A D | SamplePatch.cpp | 406 case skui::InputState::kMove: 494 case skui::InputState::kMove:
|
H A D | SamplePathTessellators.cpp | 303 case SkPathVerb::kMove: in update_weight()
|
/third_party/skia/tools/skui/ |
H A D | InputState.h | 9 kMove, // only valid for mouse member in skui::InputState
|
/third_party/skia/src/utils/ |
H A D | SkCustomTypeface.cpp | 254 kMove, enumerator 266 case SkPathVerb::kMove: verbs.push_back(kMove); pCount += 1; break; in compress_write() 305 case SkPathVerb::kMove: write_pts(&p[0], 1); break; in compress_write()
|
/third_party/skia/include/core/ |
H A D | SkPathTypes.h | 51 kMove, //!< SkPath::RawIter returns 1 point member in SkPathVerb
|
H A D | SkPath.h | 1053 kMove, kLine, kLine, kLine, kClose 1419 kMove_Verb = static_cast<int>(SkPathVerb::kMove), 1564 // point, which works fine as long as there is always a kMove before any geometry. in operator *() 1573 case SkPathVerb::kMove: return 1; in pts_advance_after_verb() 1584 case SkPathVerb::kMove: return 0; in pts_backset_for_verb()
|
/third_party/skia/src/pathops/ |
H A D | SkPathOpsTightBounds.cpp | 16 case SkPathVerb::kMove: in TightBounds()
|
H A D | SkPathOpsAsWinding.cpp | 185 if (SkPathVerb::kMove == verb) { 337 case SkPathVerb::kMove: in reverseMarkedContours()
|
/third_party/skia/modules/canvaskit/ |
H A D | viewer_bindings.cpp | 62 .value("Move", skui::InputState::kMove) in EMSCRIPTEN_BINDINGS()
|
/third_party/skia/src/gpu/tessellate/ |
H A D | Tessellation.cpp | 102 case SkPathVerb::kMove: in PreChopPathCurves()
|
H A D | MiddleOutPolygonTriangulator.h | 219 case SkPathVerb::kMove: in nextStack()
|
H A D | StrokeIterator.h | 74 case SkPathVerb::kMove: in next()
|
H A D | PathWedgeTessellator.cpp | 57 fPtsIdx = 1; // Increment fPtsIdx past the kMove. in parseNextContour() 159 case SkPathVerb::kMove: { in writePatches()
|
/third_party/skia/tools/sk_app/win/ |
H A D | Window_win.cpp | 295 eventHandled = window->onMouse(xPos, yPos, skui::InputState::kMove, in WndProc() 317 state = skui::InputState::kMove; in WndProc()
|
/third_party/skia/src/core/ |
H A D | SkPathBuilder.cpp | 58 case SkPathVerb::kMove: this->moveTo(pts[0]); break; in operator =() 93 fVerbs.push_back((uint8_t)SkPathVerb::kMove); in moveTo() 836 case SkPathVerb::kMove: in privateReverseAddPath()
|
H A D | SkPath.cpp | 300 if (verb == SkPathVerb::kClose || (segmentCount > 0 && verb == SkPathVerb::kMove)) { in conservativelyContainsRect() 306 } else if (verb == SkPathVerb::kMove) { in conservativelyContainsRect() 1407 case SkPathVerb::kMove: in addPath() 1844 case SkPathVerb::kMove: numPts = 1; break; in next() 2312 if (verb == SkPathVerb::kMove) { in computeConvexity() 2322 if (verb == SkPathVerb::kClose || verb == SkPathVerb::kMove) { in computeConvexity() 2341 if (verb != SkPathVerb::kMove) { in computeConvexity() 3139 case SkPathVerb::kMove: in IsSimpleRect() 3345 case SkPathVerb::kMove: in computeTightBounds() 3404 case SkPathVerb::kMove in sk_path_analyze_verbs() [all...] |
H A D | SkContourMeasure.cpp | 350 if (haveSeenMoveTo && verb == SkPathVerb::kMove) { 354 case SkPathVerb::kMove:
|
/third_party/skia/bench/ |
H A D | PathOpsBench.cpp | 105 fVbs[fVIndex++] = (uint8_t)SkPathVerb::kMove; in moveTo()
|
/third_party/node/deps/v8/src/diagnostics/ |
H A D | perf-jit.cc | 75 kMove = 1, enumerator
|