Home | History | Annotate | Download | only in core

Lines Matching refs:ed

690         SkPathRef::Editor ed(&fPathRef);
691 ed.atPoint(index)->set(x, y);
702 SkPathRef::Editor ed(&fPathRef);
703 ed.atPoint(count-1)->set(x, y);
731 SkPathRef::Editor ed(&fPathRef);
736 ed.growForVerb(kMove_Verb)->set(x, y);
766 SkPathRef::Editor ed(&fPathRef);
767 ed.growForVerb(kLine_Verb)->set(x, y);
784 SkPathRef::Editor ed(&fPathRef);
785 SkPoint* pts = ed.growForVerb(kQuad_Verb);
814 SkPathRef::Editor ed(&fPathRef);
815 SkPoint* pts = ed.growForVerb(kConic_Verb, w);
837 SkPathRef::Editor ed(&fPathRef);
838 SkPoint* pts = ed.growForVerb(kCubic_Verb);
866 SkPathRef::Editor ed(&fPathRef);
867 ed.growForVerb(kClose_Verb);
1014 SkPathRef::Editor ed(&fPathRef, count+close, count);
1016 ed.growForVerb(kMove_Verb)->set(pts[0].fX, pts[0].fY);
1018 SkPoint* p = ed.growForRepeatedVerb(kLine_Verb, count - 1);
1023 ed.growForVerb(kClose_Verb);
1171 SkPathRef::Editor ed(&fPathRef);
1172 ed.setIsRRect(isRRect, dir, startIndex % 8);
1264 SkPathRef::Editor ed(&fPathRef);
1266 ed.setIsOval(isOval, kCCW_Direction == dir, startPointIndex % 4);
1617 SkPathRef::Editor ed(&fPathRef, src.fPathRef->countPoints(), src.fPathRef->countVerbs());
1733 SkPathRef::Editor ed(&dst->fPathRef);
1734 matrix.mapPoints(ed.points(), ed.pathRef()->countPoints());