HomeSort by relevance Sort by last modified time
    Searched full:moveto (Results 1 - 25 of 151) sorted by null

1 2 3 4 5 6 7

  /external/skia/src/effects/
SkCornerPathEffect.cpp 57 SkPoint moveTo, lastCorner;
62 moveTo.set(0, 0);
75 moveTo = pts[0];
79 dst->moveTo(pts[0]);
88 dst->moveTo(moveTo + step);
105 dst->moveTo(pts[0]);
115 dst->moveTo(pts[0]);
  /external/skia/include/utils/
SkCullPoints.h 31 void moveTo(int x, int y);
36 kMoveToLineTo_Result //!< path.moveTo(pts[0]); path.lineTo(pts[1]);
38 /** Connect a line to the previous call to lineTo (or moveTo).
67 void moveTo(int x, int y);
  /external/skia/tests/
PathMeasureTest.cpp 7 path.moveTo(0, 0);
17 path.moveTo(0, 0);
PaintTest.cpp 11 path.moveTo(460.2881309415525, 303.250847066498);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SuggestionCursorWrapper.java 47 public void moveTo(int pos) {
49 mCursor.moveTo(pos);
SuggestionPosition.java 43 mCursor.moveTo(mPosition);
ShortcutCursor.java 70 suggestions.moveTo(i);
116 moveTo(i);
SuggestionCursor.java 43 void moveTo(int pos);
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.h 69 struct MoveTo {
96 PlatformPathElement(const MoveTo& data): m_type(PathMoveTo) { m_data.m_moveToData = data; }
102 const MoveTo& moveTo() const { return m_data.m_moveToData; }
124 MoveTo m_moveToData;
153 void moveTo(const FloatPoint&);
PathWince.cpp 71 void Path::moveTo(const FloatPoint& point)
73 m_path->moveTo(point);
  /external/webkit/WebCore/editing/
SelectionController.h 54 void moveTo(const Range*, EAffinity, bool userTriggered = false);
55 void moveTo(const VisiblePosition&, bool userTriggered = false);
56 void moveTo(const VisiblePosition&, const VisiblePosition&, bool userTriggered = false);
57 void moveTo(const Position&, EAffinity, bool userTriggered = false);
58 void moveTo(const Position&, const Position&, EAffinity, bool userTriggered = false);
  /external/skia/include/core/
SkPath.h 186 void moveTo(SkScalar x, SkScalar y);
192 void moveTo(const SkPoint& p) {
193 this->moveTo(p.fX, p.fY);
198 same as moveTo().
208 moveTo() call has been made for this contour, the first point is
216 /** Add a line from the last point to the specified point. If no moveTo()
227 point on this contour. If there is no previous point, then a moveTo(0,0)
238 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
249 p1, and ending at p2. If no moveTo() call has been made for this
260 point on this contour. If there is no previous point, then a moveTo(0,0
    [all...]
  /external/webkit/WebCore/svg/
SVGPathSegList.cpp 68 SVGPathSegMovetoAbs* moveTo = static_cast<SVGPathSegMovetoAbs*>(segment);
69 segmentLength = traversalState.moveTo(FloatPoint(moveTo->x(), moveTo->y()));
117 SVGPathSegMovetoAbs* moveTo = static_cast<SVGPathSegMovetoAbs*>(segment);
118 pathData.moveTo(FloatPoint(moveTo->x(), moveTo->y()));
SVGPolygonElement.cpp 48 polyData.moveTo(points()->getItem(0, ec));
SVGPolylineElement.cpp 48 polyData.moveTo(points()->getItem(0, ec));
  /external/skia/src/utils/
SkCullPoints.cpp 94 void SkCullPoints::moveTo(int x, int y)
148 void SkCullPointsPath::moveTo(int x, int y)
150 fCP.moveTo(x, y);
159 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 210 public void moveTo(float x, float y) {
211 mPath.moveTo(mLastX = x, mLastY = y);
217 * same as moveTo().
227 mPath.moveTo(mLastX = dx, mLastY = dy);
232 * If no moveTo() call has been made for this contour, the first point is
244 * point on this contour. If there is no previous point, then a moveTo(0,0)
254 mPath.moveTo(mLastX = 0, mLastY = 0);
263 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
277 * point on this contour. If there is no previous point, then a moveTo(0,0)
291 mPath.moveTo(mLastX = 0, mLastY = 0)
    [all...]
  /external/webkit/WebCore/platform/graphics/
Path.cpp 52 segmentLength = traversalState.moveTo(points[0]);
134 path.moveTo(FloatPoint(x + dx, y));
180 path.moveTo(FloatPoint(x + topLeftRadius.width(), y));
213 path.moveTo(FloatPoint(x, y));
249 path.moveTo(FloatPoint(x, y));
270 path.moveTo(start);
PathTraversalState.h 48 float moveTo(const FloatPoint&);
  /cts/tests/tests/graphics/src/android/graphics/cts/
CornerPathEffectTest.java 55 path.moveTo(0, PADDING);
77 expectedPath.moveTo(0, PADDING);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
PathEffects.java 103 p.moveTo(0, 0);
112 p.moveTo(4, 0);
  /external/e2fsprogs/contrib/
dconf 74 printf(" newpath x1 y1 moveto x2 y1 lineto x2 y2 lineto\n")
79 printf("/textxy {moveto show} bind def\n")
  /external/webkit/WebKit/android/plugins/
ANPPathInterface.cpp 59 path->moveTo(SkFloatToScalar(x), SkFloatToScalar(y));
105 ASSIGN(i, moveTo);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
SuggestionCursorUtil.java 45 expected.moveTo(positionExpected);
46 observed.moveTo(positionObserved);
  /frameworks/base/core/java/android/gesture/
OrientedBoundingBox.java 64 path.moveTo(point[0], point[1]);

Completed in 152 milliseconds

1 2 3 4 5 6 7