Lines Matching refs:ed
534 SkPathRef::Editor ed(&fPathRef);
535 ed.atPoint(index)->set(x, y);
546 SkPathRef::Editor ed(&fPathRef);
547 ed.atPoint(count-1)->set(x, y);
620 SkPathRef::Editor ed(&fPathRef);
625 ed.growForVerb(kMove_Verb)->set(x, y);
662 SkPathRef::Editor ed(&fPathRef);
663 ed.growForVerb(kLine_Verb)->set(x, y);
680 SkPathRef::Editor ed(&fPathRef);
681 SkPoint* pts = ed.growForVerb(kQuad_Verb);
710 SkPathRef::Editor ed(&fPathRef);
711 SkPoint* pts = ed.growForVerb(kConic_Verb, w);
734 SkPathRef::Editor ed(&fPathRef);
735 SkPoint* pts = ed.growForVerb(kCubic_Verb);
763 SkPathRef::Editor ed(&fPathRef);
764 ed.growForVerb(kClose_Verb);
826 SkPathRef::Editor ed(&fPathRef, count+close, count);
828 ed.growForVerb(kMove_Verb)->set(pts[0].fX, pts[0].fY);
830 SkPoint* p = ed.growForRepeatedVerb(kLine_Verb, count - 1);
835 ed.growForVerb(kClose_Verb);
985 SkPathRef::Editor ed(&fPathRef);
986 ed.setIsRRect(isRRect, dir == SkPathDirection::kCCW, startIndex % 8);
1079 SkPathRef::Editor ed(&fPathRef);
1081 ed.setIsOval(isOval, SkPathDirection::kCCW == dir, startPointIndex % 4);
1389 SkPathRef::Editor ed(&fPathRef);
1390 auto [newPts, newWeights] = ed.growForVerbsInPath(*src->fPathRef);
1626 SkPathRef::Editor ed(&dst->fPathRef);
1627 matrix.mapPoints(ed.writablePoints(), ed.pathRef()->countPoints());