Home | History | Annotate | Download | only in graphics

Lines Matching refs:moveTo

226         pathDelegate.moveTo(x, y);
631 private void moveTo(float x, float y) {
632 mPath.moveTo(mLastX = x, mLastY = y);
638 * same as moveTo().
648 mPath.moveTo(mLastX = dx, mLastY = dy);
653 * If no moveTo() call has been made for this contour, the first point is
661 mPath.moveTo(mLastX = 0, mLastY = 0);
668 * point on this contour. If there is no previous point, then a moveTo(0,0)
678 mPath.moveTo(mLastX = 0, mLastY = 0);
687 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
701 * point on this contour. If there is no previous point, then a moveTo(0,0)
715 mPath.moveTo(mLastX = 0, mLastY = 0);
726 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
744 * moveTo(0,0) is inserted automatically.
749 mPath.moveTo(mLastX = 0, mLastY = 0);
764 * start of the arc. However, if the path is empty, then we call moveTo()
811 moveTo(left, top);