HomeSort by relevance Sort by last modified time
    Searched refs:targetPoint (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathBuilder.cpp 36 void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed, PathCoordinateMode mode)
39 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
45 void SVGPathBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
52 void SVGPathBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
57 m_current += targetPoint;
59 m_current = targetPoint;
    [all...]
SVGPathByteStreamSource.cpp 49 bool SVGPathByteStreamSource::parseMoveToSegment(FloatPoint& targetPoint)
51 targetPoint = readFloatPoint();
55 bool SVGPathByteStreamSource::parseLineToSegment(FloatPoint& targetPoint)
57 targetPoint = readFloatPoint();
73 bool SVGPathByteStreamSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint)
77 targetPoint = readFloatPoint();
81 bool SVGPathByteStreamSource::parseCurveToCubicSmoothSegment(FloatPoint& point2, FloatPoint& targetPoint)
84 targetPoint = readFloatPoint();
88 bool SVGPathByteStreamSource::parseCurveToQuadraticSegment(FloatPoint& point1, FloatPoint& targetPoint)
91 targetPoint = readFloatPoint()
    [all...]
SVGPathSegListBuilder.cpp 60 void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
65 m_pathSegList->append(m_pathElement->createSVGPathSegMovetoAbs(targetPoint.x(), targetPoint.y(), m_pathSegRole));
67 m_pathSegList->append(m_pathElement->createSVGPathSegMovetoRel(targetPoint.x(), targetPoint.y(), m_pathSegRole));
70 void SVGPathSegListBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
75 m_pathSegList->append(m_pathElement->createSVGPathSegLinetoAbs(targetPoint.x(), targetPoint.y(), m_pathSegRole));
77 m_pathSegList->append(m_pathElement->createSVGPathSegLinetoRel(targetPoint.x(), targetPoint.y(), m_pathSegRole))
    [all...]
SVGPathStringBuilder.cpp 38 void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
41 m_stringBuilder.append("M " + String::number(targetPoint.x()) + ' ' + String::number(targetPoint.y()) + ' ');
43 m_stringBuilder.append("m " + String::number(targetPoint.x()) + ' ' + String::number(targetPoint.y()) + ' ');
46 void SVGPathStringBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
49 m_stringBuilder.append("L " + String::number(targetPoint.x()) + ' ' + String::number(targetPoint.y()) + ' ');
51 m_stringBuilder.append("l " + String::number(targetPoint.x()) + ' ' + String::number(targetPoint.y()) + ' ')
    [all...]
SVGPathByteStreamBuilder.cpp 34 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
38 writeFloatPoint(targetPoint);
41 void SVGPathByteStreamBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
45 writeFloatPoint(targetPoint);
62 void SVGPathByteStreamBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
68 writeFloatPoint(targetPoint);
71 void SVGPathByteStreamBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
76 writeFloatPoint(targetPoint);
79 void SVGPathByteStreamBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode)
84 writeFloatPoint(targetPoint);
    [all...]
SVGPathParser.cpp 51 FloatPoint targetPoint;
52 if (!m_source->parseMoveToSegment(targetPoint))
57 m_currentPoint += targetPoint;
59 m_currentPoint = targetPoint;
63 m_consumer->moveTo(targetPoint, m_closePath, m_mode);
70 FloatPoint targetPoint;
71 if (!m_source->parseLineToSegment(targetPoint))
76 m_currentPoint += targetPoint;
78 m_currentPoint = targetPoint;
81 m_consumer->lineTo(targetPoint, m_mode)
    [all...]
SVGPathTraversalStateBuilder.cpp 35 void SVGPathTraversalStateBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode)
38 m_traversalState->m_totalLength += m_traversalState->moveTo(targetPoint);
41 void SVGPathTraversalStateBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode)
44 m_traversalState->m_totalLength += m_traversalState->lineTo(targetPoint);
47 void SVGPathTraversalStateBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode)
50 m_traversalState->m_totalLength += m_traversalState->cubicBezierTo(point1, point2, targetPoint);
SVGPathStringSource.cpp 170 bool SVGPathStringSource::parseMoveToSegment(FloatPoint& targetPoint)
173 return parseFloatPoint(m_current.m_character8, m_end.m_character8, targetPoint);
174 return parseFloatPoint(m_current.m_character16, m_end.m_character16, targetPoint);
177 bool SVGPathStringSource::parseLineToSegment(FloatPoint& targetPoint)
180 return parseFloatPoint(m_current.m_character8, m_end.m_character8, targetPoint);
181 return parseFloatPoint(m_current.m_character16, m_end.m_character16, targetPoint);
198 bool SVGPathStringSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint)
201 return parseFloatPoint3(m_current.m_character8, m_end.m_character8, point1, point2, targetPoint);
202 return parseFloatPoint3(m_current.m_character16, m_end.m_character16, point1, point2, targetPoint);
205 bool SVGPathStringSource::parseCurveToCubicSmoothSegment(FloatPoint& point1, FloatPoint& targetPoint)
    [all...]
SVGPathSegListSource.cpp 61 bool SVGPathSegListSource::parseMoveToSegment(FloatPoint& targetPoint)
66 targetPoint = FloatPoint(moveTo->x(), moveTo->y());
70 bool SVGPathSegListSource::parseLineToSegment(FloatPoint& targetPoint)
75 targetPoint = FloatPoint(lineTo->x(), lineTo->y());
97 bool SVGPathSegListSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint)
104 targetPoint = FloatPoint(cubic->x(), cubic->y());
108 bool SVGPathSegListSource::parseCurveToCubicSmoothSegment(FloatPoint& point2, FloatPoint& targetPoint)
114 targetPoint = FloatPoint(cubicSmooth->x(), cubicSmooth->y());
118 bool SVGPathSegListSource::parseCurveToQuadraticSegment(FloatPoint& point1, FloatPoint& targetPoint)
124 targetPoint = FloatPoint(quadratic->x(), quadratic->y())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.h 32 bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const Vector<RefPtr<Node> >&);
33 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const Vector<RefPtr<Node> >&);
TouchAdjustment.cpp 435 bool findNodeWithLowestDistanceMetric(Node*& targetNode, IntPoint& targetPoint, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, SubtargetGeometryList& subtargets, DistanceFunction distanceFunction)
448 targetPoint = adjustedPoint;
457 targetPoint = adjustedPoint;
472 bool findBestClickableCandidate(Node*& targetNode, IntPoint &targetPoint, const IntPoint &touchHotspot, const IntRect &touchArea, const Vector<RefPtr<Node> >& nodes)
477 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
480 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint &targetPoint, const IntPoint &touchHotspot, const IntRect &touchArea, const Vector<RefPtr<Node> >& nodes)
485 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
490 IntPoint targetPoint;
493 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::zoomableIntersectionQuotient);
EventHandler.h 165 bool bestClickableNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode);
166 bool bestContextMenuNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode);
EventHandler.cpp     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
org.eclipse.jface_3.6.1.M20100825-0800.jar 
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.cpp     [all...]
  /prebuilts/tools/common/netbeans-visual/
org-netbeans-api-visual.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-jface-3.6.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.jface_3.4.2.M20090107-0800.jar 
org.eclipse.jface_3.6.2.M20110210-1200.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-jface/3.6.2/
org-eclipse-jface-3.6.2.jar 

Completed in 740 milliseconds