Searched refs:SVGPoint (Results 1 – 25 of 44) sorted by relevance
12
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGPointList.idl | 30 [StrictTypeChecking, RaisesException] SVGPoint initialize(SVGPoint item); 31 [StrictTypeChecking, RaisesException] SVGPoint getItem(unsigned long index); 32 …[StrictTypeChecking, RaisesException] SVGPoint insertItemBefore(SVGPoint item, unsigned long index… 33 [StrictTypeChecking, RaisesException] SVGPoint replaceItem(SVGPoint item, unsigned long index); 34 [StrictTypeChecking, RaisesException] SVGPoint removeItem(unsigned long index); 35 [StrictTypeChecking, RaisesException] SVGPoint appendItem(SVGPoint item);
|
D | SVGZoomEvent.h | 41 SVGPoint previousTranslate() const; 46 SVGPoint newTranslate() const; 58 SVGPoint m_newTranslate; 59 SVGPoint m_previousTranslate;
|
D | SVGGeometryElement.h | 41 bool isPointInFill(const SVGPoint&) const; 42 bool isPointInStroke(const SVGPoint&) const;
|
D | SVGPointList.h | 30 class SVGPointList : public Vector<SVGPoint> { 40 typedef SVGPoint ListItemType;
|
D | SVGTextContentElement.h | 82 SVGPoint getStartPositionOfChar(unsigned charnum, ExceptionState&); 83 SVGPoint getEndPositionOfChar(unsigned charnum, ExceptionState&); 86 int getCharNumAtPosition(const SVGPoint&);
|
D | SVGZoomEvent.cpp | 51 SVGPoint SVGZoomEvent::previousTranslate() const in previousTranslate() 66 SVGPoint SVGZoomEvent::newTranslate() const in newTranslate()
|
D | SVGGeometryElement.cpp | 46 bool SVGGeometryElement::isPointInFill(const SVGPoint& point) const in isPointInFill() 60 bool SVGGeometryElement::isPointInStroke(const SVGPoint& point) const in isPointInStroke()
|
D | SVGTextContentElement.idl | 38 [RaisesException] SVGPoint getStartPositionOfChar(unsigned long offset); 39 [RaisesException] SVGPoint getEndPositionOfChar(unsigned long offset); 42 long getCharNumAtPosition(SVGPoint point);
|
D | SVGSVGElement.h | 87 SVGPoint& currentTranslate() { return m_translation; } in currentTranslate() 116 static SVGPoint createSVGPoint(); 178 SVGPoint m_translation;
|
D | SVGPoint.idl | 23 interface SVGPoint { 27 …[MeasureAs=SVGPointMatrixTransform, StrictTypeChecking] SVGPoint matrixTransform(SVGMatrix matrix);
|
D | SVGZoomEvent.idl | 29 [Immutable] readonly attribute SVGPoint previousTranslate; 31 [Immutable] readonly attribute SVGPoint newTranslate;
|
D | SVGPoint.h | 33 typedef FloatPoint SVGPoint; typedef
|
D | SVGGeometryElement.idl | 32 boolean isPointInFill(SVGPoint point); 33 boolean isPointInStroke(SVGPoint point);
|
D | SVGTextContentElement.cpp | 132 SVGPoint SVGTextContentElement::getStartPositionOfChar(unsigned charnum, ExceptionState& exceptionS… in getStartPositionOfChar() 144 SVGPoint SVGTextContentElement::getEndPositionOfChar(unsigned charnum, ExceptionState& exceptionSta… in getEndPositionOfChar() 180 int SVGTextContentElement::getCharNumAtPosition(const SVGPoint& point) in getCharNumAtPosition()
|
D | SVGSVGElement.idl | 40 readonly attribute SVGPoint currentTranslate; 64 SVGPoint createSVGPoint();
|
D | SVGPathUtilities.h | 57 bool getPointAtLengthOfSVGPathByteStream(SVGPathByteStream*, float length, SVGPoint&);
|
D | SVGPathTraversalStateBuilder.h | 37 SVGPoint currentPoint();
|
D | SVGPathTraversalStateBuilder.cpp | 90 SVGPoint SVGPathTraversalStateBuilder::currentPoint() in currentPoint()
|
D | SVGPathElement.cpp | 101 SVGPoint SVGPathElement::getPointAtLength(float length) in getPointAtLength() 103 SVGPoint point; in getPointAtLength()
|
D | SVGPathElement.h | 61 SVGPoint getPointAtLength(float distance);
|
D | SVGPathElement.idl | 31 [StrictTypeChecking] SVGPoint getPointAtLength(float distance);
|
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/ |
D | TestObject.idl | 243 attribute SVGPoint mutablePoint; 244 [Immutable] attribute SVGPoint immutablePoint; 245 SVGPoint mutablePointFunction(); 246 [Immutable] SVGPoint immutablePointFunction(); 248 SVGPoint svgPointMethod(SVGPoint item, unsigned long index); 249 …[StrictTypeChecking, RaisesException] SVGPoint strictSVGPointMethod(SVGPoint item, unsigned long …
|
D | TestTypedefs.idl | 68 typedef SVGPoint SVGPOINT;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | SVGTextQuery.h | 45 int characterNumberAtPosition(const SVGPoint&) const;
|
D | RenderSVGRoot.cpp | 333 SVGPoint translate = svg->currentTranslate(); in buildLocalToBorderBoxTransform() 336 if (borderAndPadding.isEmpty() && scale == 1 && translate == SVGPoint::zero()) in buildLocalToBorderBoxTransform()
|
12