Lines Matching refs:path
47 /* If the previous path is not added to the drawing linked list, it should be destroyed directly. */
147 * CMD_ARC, the start point of arc must be connected to the end point of the path.
158 /* If the ARC scan range exceeds 360 degrees, the end point of the path is the position of the start angle. */
311 pathParam->path->strokeCount_--;
312 if (pathParam->path->strokeCount_ == 0) {
313 delete pathParam->path;
810 pathParam->path = path_;
1322 const UICanvasPath* path = pathParam->path;
1323 if (path == nullptr) {
1328 ListNode<Point>* pointIter = path->points_.Begin();
1329 ListNode<ArcParam>* arcIter = path->arcParam_.Begin();
1330 ListNode<PathCmd>* iter = path->cmd_.Begin();
1331 for (uint16_t i = 0; (i < pathParam->count) && (iter != path->cmd_.End()); i++, iter = iter->next_) {
1369 if (pointIter != path->points_.Begin()) {