Searched refs:targetPoint (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathBuilder.cpp36 void SVGPathBuilder::moveTo(const FloatPoint& targetPoint, bool closed, PathCoordinateMode mode) argument
39 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
45 void SVGPathBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
48 m_current = mode == AbsoluteCoordinates ? targetPoint : m_current + targetPoint;
52 void SVGPathBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
56 m_path->addBezierCurveTo(m_current + point1, m_current + point2, m_current + targetPoint);
57 m_current += targetPoint;
59 m_current = targetPoint;
[all...]
H A DSVGPathByteStreamSource.cpp49 bool SVGPathByteStreamSource::parseMoveToSegment(FloatPoint& targetPoint) argument
51 targetPoint = readFloatPoint();
55 bool SVGPathByteStreamSource::parseLineToSegment(FloatPoint& targetPoint) argument
57 targetPoint = readFloatPoint();
73 bool SVGPathByteStreamSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint) argument
77 targetPoint = readFloatPoint();
81 bool SVGPathByteStreamSource::parseCurveToCubicSmoothSegment(FloatPoint& point2, FloatPoint& targetPoint) argument
84 targetPoint = readFloatPoint();
88 bool SVGPathByteStreamSource::parseCurveToQuadraticSegment(FloatPoint& point1, FloatPoint& targetPoint) argument
91 targetPoint
95 parseCurveToQuadraticSmoothSegment(FloatPoint& targetPoint) argument
101 parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
[all...]
H A DSVGPathSegListBuilder.cpp58 void SVGPathSegListBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) argument
63 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
65 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegMovetoRel::create(m_pathElement, targetPoint.x(), targetPoint.y()));
68 void SVGPathSegListBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
73 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoAbs::create(m_pathElement, targetPoint.x(), targetPoint.y()));
75 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegLinetoRel::create(m_pathElement, targetPoint.x(), targetPoint
98 curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
108 curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
118 curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
128 curveToQuadraticSmooth(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
138 arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
[all...]
H A DSVGPathParser.cpp51 FloatPoint targetPoint; local
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; local
71 if (!m_source->parseLineToSegment(targetPoint))
76 m_currentPoint += targetPoint;
78 m_currentPoint = targetPoint;
81 m_consumer->lineTo(targetPoint, m_mod
123 FloatPoint targetPoint; local
145 FloatPoint targetPoint; local
176 FloatPoint targetPoint; local
205 FloatPoint targetPoint; local
244 FloatPoint targetPoint; local
484 FloatPoint targetPoint = FloatPoint(cosEndTheta, sinEndTheta); local
[all...]
H A DSVGPathTraversalStateBuilder.cpp35 void SVGPathTraversalStateBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode) argument
38 m_traversalState->m_totalLength += m_traversalState->moveTo(targetPoint);
41 void SVGPathTraversalStateBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode) argument
44 m_traversalState->m_totalLength += m_traversalState->lineTo(targetPoint);
47 void SVGPathTraversalStateBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode) argument
50 m_traversalState->m_totalLength += m_traversalState->cubicBezierTo(point1, point2, targetPoint);
H A DSVGPathStringSource.cpp170 bool SVGPathStringSource::parseMoveToSegment(FloatPoint& targetPoint) argument
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) argument
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) argument
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) argument
212 parseCurveToQuadraticSegment(FloatPoint& point2, FloatPoint& targetPoint) argument
219 parseCurveToQuadraticSmoothSegment(FloatPoint& targetPoint) argument
227 parseArcToSegmentHelper(const CharacterType*& current, const CharacterType* end, float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
243 parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
[all...]
H A DSVGPathByteStreamBuilder.cpp77 void SVGPathByteStreamBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) argument
81 buffer.writeFloatPoint(targetPoint);
84 void SVGPathByteStreamBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
88 buffer.writeFloatPoint(targetPoint);
105 void SVGPathByteStreamBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
111 buffer.writeFloatPoint(targetPoint);
114 void SVGPathByteStreamBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
119 buffer.writeFloatPoint(targetPoint);
122 void SVGPathByteStreamBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
127 buffer.writeFloatPoint(targetPoint);
130 curveToQuadraticSmooth(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
137 arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
[all...]
H A DSVGPathSegListSource.cpp60 bool SVGPathSegListSource::parseMoveToSegment(FloatPoint& targetPoint) argument
65 targetPoint = FloatPoint(moveTo->x(), moveTo->y());
69 bool SVGPathSegListSource::parseLineToSegment(FloatPoint& targetPoint) argument
74 targetPoint = FloatPoint(lineTo->x(), lineTo->y());
96 bool SVGPathSegListSource::parseCurveToCubicSegment(FloatPoint& point1, FloatPoint& point2, FloatPoint& targetPoint) argument
103 targetPoint = FloatPoint(cubic->x(), cubic->y());
107 bool SVGPathSegListSource::parseCurveToCubicSmoothSegment(FloatPoint& point2, FloatPoint& targetPoint) argument
113 targetPoint = FloatPoint(cubicSmooth->x(), cubicSmooth->y());
117 bool SVGPathSegListSource::parseCurveToQuadraticSegment(FloatPoint& point1, FloatPoint& targetPoint) argument
123 targetPoint
127 parseCurveToQuadraticSmoothSegment(FloatPoint& targetPoint) argument
136 parseArcToSegment(float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint) argument
[all...]
H A DSVGPathStringBuilder.cpp78 void SVGPathStringBuilder::moveTo(const FloatPoint& targetPoint, bool, PathCoordinateMode mode) argument
80 emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'M' : 'm', targetPoint);
83 void SVGPathStringBuilder::lineTo(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
85 emitCommand1Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'L' : 'l', targetPoint);
98 void SVGPathStringBuilder::curveToCubic(const FloatPoint& point1, const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
103 appendPoint(m_stringBuilder, targetPoint);
107 void SVGPathStringBuilder::curveToCubicSmooth(const FloatPoint& point2, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
109 emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'S' : 's', point2, targetPoint);
112 void SVGPathStringBuilder::curveToQuadratic(const FloatPoint& point1, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
114 emitCommand2Arg(m_stringBuilder, (mode == AbsoluteCoordinates) ? 'Q' : 'q', point1, targetPoint);
117 curveToQuadraticSmooth(const FloatPoint& targetPoint, PathCoordinateMode mode) argument
122 arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DTouchAdjustment.h33 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> >&);
H A DTouchAdjustment.cpp450 bool findNodeWithLowestDistanceMetric(Node*& targetNode, IntPoint& targetPoint, IntRect& targetArea, const IntPoint& touchHotspot, const IntRect& touchArea, SubtargetGeometryList& subtargets, DistanceFunction distanceFunction) argument
463 targetPoint = adjustedPoint;
472 targetPoint = adjustedPoint;
492 bool findBestClickableCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes) argument
497 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
500 bool findBestContextMenuCandidate(Node*& targetNode, IntPoint& targetPoint, const IntPoint& touchHotspot, const IntRect& touchArea, const WillBeHeapVector<RefPtrWillBeMember<Node> >& nodes) argument
505 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::hybridDistanceFunction);
510 IntPoint targetPoint; local
513 return TouchAdjustment::findNodeWithLowestDistanceMetric(targetNode, targetPoint, targetArea, touchHotspot, touchArea, subtargets, TouchAdjustment::zoomableIntersectionQuotient);
H A DEventHandler.h164 bool bestClickableNodeForHitTestResult(const HitTestResult&, IntPoint& targetPoint, Node*& targetNode);
165 bool bestContextMenuNodeForHitTestResult(const HitTestResult&, IntPoint& targetPoint, Node*& targetNode);
H A DEventHandler.cpp2516 bool EventHandler::bestClickableNodeForHitTestResult(const HitTestResult& result, IntPoint& targetPoint, Node*& targetNode) argument
2536 return findBestClickableCandidate(targetNode, targetPoint, touchCenter, touchRect, WillBeHeapVector<RefPtrWillBeMember<Node> > (nodes));
2539 bool EventHandler::bestContextMenuNodeForHitTestResult(const HitTestResult& result, IntPoint& targetPoint, Node*& targetNode) argument
2548 return findBestContextMenuCandidate(targetNode, targetPoint, touchCenter, touchRect, WillBeHeapVector<RefPtrWillBeMember<Node> >(nodes));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayer.cpp2468 FloatPoint targetPoint = transformState.mappedPoint();
2471 FloatPoint3D backmappedPoint = transformState.m_accumulatedTransform.mapPoint(FloatPoint3D(targetPoint));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 774 milliseconds