Searched defs:moveTo (Results 1 - 25 of 42) 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/legacy/src/effects/
H A DSkCornerPathEffect.cpp49 SkPoint moveTo, lastCorner; local
54 moveTo.set(0, 0);
67 moveTo = pts[0];
70 dst->moveTo(pts[0]);
78 dst->moveTo(moveTo + step);
94 dst->moveTo(pts[0]);
103 dst->moveTo(pts[0]);
/external/skia/legacy/src/utils/
H A DSkCullPoints.cpp81 void SkCullPoints::moveTo(int x, int y) { function in class:SkCullPoints
130 void SkCullPointsPath::moveTo(int x, int y) { function in class:SkCullPointsPath
131 fCP.moveTo(x, y);
139 fPath->moveTo(SkIntToScalar(pts[0].fX), SkIntToScalar(pts[0].fY));
/external/skia/src/effects/
H A DSkCornerPathEffect.cpp44 SkPoint moveTo, lastCorner; local
49 moveTo.set(0, 0);
62 moveTo = pts[0];
65 dst->moveTo(pts[0]);
73 dst->moveTo(moveTo + step);
89 dst->moveTo(pts[0]);
98 dst->moveTo(pts[0]);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPath.java27 public void moveTo(float x, float y) { method in class:ShadowPath
61 * @return whether the {@link #moveTo(float, float)} method was called
/external/skia/src/utils/
H A DSkCullPoints.cpp81 void SkCullPoints::moveTo(int x, int y) { function in class:SkCullPoints
130 void SkCullPointsPath::moveTo(int x, int y) { function in class:SkCullPointsPath
131 fCP.moveTo(x, y);
139 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/webkit/Source/WebCore/platform/graphics/android/
H A DPathAndroid.cpp73 // Skia's empty() will return true if it has just a moveTo, so we need to
75 // including moveTo.
121 void Path::moveTo(const FloatPoint& point) function in class:WebCore::Path
123 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

Completed in 2596 milliseconds

12