HomeSort by relevance Sort by last modified time
    Searched refs:targetPoint (Results 1 - 23 of 23) 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 59 void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
64 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y()));
66 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y()));
69 void SVGPathSegListBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
74 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y()));
76 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, m_pathSegRole, targetPoint.x(), targetPoint.y()))
    [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...]
SVGPathByteStreamBuilder.cpp 77 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
81 buffer.writeFloatPoint(targetPoint);
84 void SVGPathByteStreamBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
88 buffer.writeFloatPoint(targetPoint);
105 void SVGPathByteStreamBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
111 buffer.writeFloatPoint(targetPoint);
114 void SVGPathByteStreamBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
119 buffer.writeFloatPoint(targetPoint);
122 void SVGPathByteStreamBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode)
127 buffer.writeFloatPoint(targetPoint);
    [all...]
SVGPathSegListSource.cpp 60 bool SVGPathSegListSource::parseMoveToSegment(FloatPoint& targetPoint)
65 targetPoint = FloatPoint(moveTo->x(), moveTo->y());
69 bool SVGPathSegListSource::parseLineToSegment(FloatPoint& targetPoint)
74 targetPoint = FloatPoint(lineTo->x(), lineTo->y());
96 bool SVGPathSegListSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint)
103 targetPoint = FloatPoint(cubic->x(), cubic->y());
107 bool SVGPathSegListSource::parseCurveToCubicSmoothSegment(FloatPoint& point2, FloatPoint& targetPoint)
113 targetPoint = FloatPoint(cubicSmooth->x(), cubicSmooth->y());
117 bool SVGPathSegListSource::parseCurveToQuadraticSegment(FloatPoint& point1, FloatPoint& targetPoint)
123 targetPoint = FloatPoint(quadratic->x(), quadratic->y())
    [all...]
SVGPathStringBuilder.cpp 78 void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode)
80 emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'M' : 'm', targetPoint);
83 void SVGPathStringBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode)
85 emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'L' : 'l', targetPoint);
98 void SVGPathStringBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
103 appendPoint(m_stringBuilder, targetPoint);
107 void SVGPathStringBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode)
109 emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'S' : 's', point2, targetPoint);
112 void SVGPathStringBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode)
114 emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'Q' : 'q', point1, targetPoint);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
TouchAdjustment.h 33 bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >&);
34 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >&);
TouchAdjustment.cpp 447 bool findNodeWithLowestDistanceMetric(Node*& targetNode, IntPoint& targetPoint, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, SubtargetGeometryList& subtargets, DistanceFunction distanceFunction)
460 targetPoint = adjustedPoint;
469 targetPoint = adjustedPoint;
484 bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes)
489 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
492 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes)
497 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
502 IntPoint targetPoint;
505 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::zoomableIntersectionQuotient);
EventHandler.h 150 bool bestClickableNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode);
151 bool bestContextMenuNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode);
EventHandler.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayer.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 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.security_1.2.0.v20130424-1801.jar 
  /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 392 milliseconds