Searched defs:moveTo (Results 1 - 25 of 31) sorted by relevance

12

/external/webkit/Source/WebCore/fileapi/
H A DEntry.cpp61 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const function in class:WebCore::Entry
H A DEntrySync.cpp65 PassRefPtr<EntrySync> EntrySync::moveTo(PassRefPtr<DirectoryEntrySync> parent, const String& name, ExceptionCode& ec) const function in class:WebCore::EntrySync
/external/webkit/Source/WebCore/svg/
H A DSVGPathBuilder.cpp36 void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed, PathCoordinateMode mode) function in class:WebCore::SVGPathBuilder
42 m_path->moveTo(m_current);
H A DSVGPathTraversalStateBuilder.cpp36 void SVGPathTraversalStateBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode) function in class:WebCore::SVGPathTraversalStateBuilder
39 m_traversalState->m_totalLength += m_traversalState->moveTo(targetPoint);
H A DSVGPathByteStreamBuilder.cpp37 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) function in class:WebCore::SVGPathByteStreamBuilder
H A DSVGPathSegListBuilder.cpp52 void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) function in class:WebCore::SVGPathSegListBuilder
H A DSVGPathStringBuilder.cpp38 void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) function in class:WebCore::SVGPathStringBuilder
H A DSVGPathSegListSource.cpp66 SVGPathSegSingleCoordinate* moveTo = static_cast<SVGPathSegSingleCoordinate*>(m_segment.get()); local
67 targetPoint = FloatPoint(moveTo->x(), moveTo->y());
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp57 SkPoint moveTo, lastCorner; local
62 moveTo.set(0, 0);
75 moveTo = pts[0];
78 dst->moveTo(pts[0]);
86 dst->moveTo(moveTo + step);
102 dst->moveTo(pts[0]);
111 dst->moveTo(pts[0]);
/external/skia/src/utils/
H A DSkCullPoints.cpp89 void SkCullPoints::moveTo(int x, int y) { function in class:SkCullPoints
138 void SkCullPointsPath::moveTo(int x, int y) { function in class:SkCullPointsPath
139 fCP.moveTo(x, y);
147 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
/external/webkit/Source/WebCore/platform/graphics/
H A DPathTraversalState.cpp167 float PathTraversalState::moveTo(const FloatPoint& point) function in class:WebCore::PathTraversalState
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DLayerTilerChromium.h104 void moveTo(int i, int j) { m_i = i; m_j = j; } function in class:WebCore::LayerTilerChromium::Tile
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DPathHaiku.cpp91 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DPathSkia.cpp100 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
102 m_path->moveTo(point);
149 // Force a moveTo the end position.
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPathWinCE.cpp71 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
73 m_path->moveTo(point);
H A DPlatformPathWinCE.h107 const MoveTo& moveTo() const { return m_data.m_moveToData; } function in class:WebCore::PlatformPathElement
158 void moveTo(const FloatPoint&);
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DPathWx.cpp140 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
/external/webkit/Source/WebCore/rendering/
H A DInlineIterator.h52 void clear() { moveTo(0, 0); }
56 moveTo(object, 0);
59 void moveTo(RenderObject* object, unsigned offset, int nextBreak = -1) function in class:WebCore::InlineIterator
226 // bidiNext can return 0, so use moveTo instead of moveToStartOf
227 moveTo(bidiNext(m_root, m_obj, resolver), 0);
/external/skia/include/core/
H A DSkPath.h260 void moveTo(SkScalar x, SkScalar y);
266 void moveTo(const SkPoint& p) { function in class:SkPath
267 this->moveTo(p.fX, p.fY);
272 same as moveTo().
282 moveTo() call has been made for this contour, the first point is
290 /** Add a line from the last point to the specified point. If no moveTo()
301 point on this contour. If there is no previous point, then a moveTo(0,0)
312 (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
323 p1, and ending at p2. If no moveTo() call has been made for this
334 point on this contour. If there is no previous point, then a moveTo(
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp74 // Skia's empty() will return true if it has just a moveTo, so we need to
76 // including moveTo.
122 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
124 m_path->moveTo(SkFloatToScalar(point.x()), SkFloatToScalar(point.y()));
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DPathCairo.cpp103 void Path::moveTo(const FloatPoint& p) function in class:WebCore::Path
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPathCG.cpp189 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp181 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp175 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
177 m_path.moveTo(point);
428 // In case of moveTo(0, 0) and addLineTo(0, 10) the angle is 270,
/external/skia/src/core/
H A DSkStroke.cpp82 void moveTo(const SkPoint&);
144 fOuter.moveTo(fFirstOuterPt.fX, fFirstOuterPt.fY);
145 fInner.moveTo(prevX - normal->fX, prevY - normal->fY);
172 fOuter.moveTo(pt.fX, pt.fY);
215 void SkPathStroker::moveTo(const SkPoint& pt) { function in class:SkPathStroker
598 stroker.moveTo(pts[0]);
647 tmp.moveTo(p0);

Completed in 1514 milliseconds

12