pathElement        59 Source/core/rendering/svg/RenderSVGTextPath.cpp     SVGPathElement& pathElement = toSVGPathElement(*targetElement);
pathElement        62 Source/core/rendering/svg/RenderSVGTextPath.cpp     updatePathFromGraphicsElement(&pathElement, pathData);
pathElement        69 Source/core/rendering/svg/RenderSVGTextPath.cpp     pathData.transform(pathElement.animatedLocalTransform());
pathElement       142 Source/core/svg/SVGAnimateMotionElement.cpp         if (SVGPathElement* pathElement = mpath->pathElement()) {
pathElement       143 Source/core/svg/SVGAnimateMotionElement.cpp             updatePathFromGraphicsElement(pathElement, m_animationPath);
pathElement        40 Source/core/svg/SVGMPathElement.h     SVGPathElement* pathElement();
pathElement        39 Source/core/svg/SVGPathSegListBuilder.h     void setCurrentSVGPathElement(SVGPathElement* pathElement) { m_pathElement = pathElement; }
pathElement       112 Source/platform/graphics/Path.cpp     PathElement pathElement;
pathElement       118 Source/platform/graphics/Path.cpp             pathElement.type = PathElementMoveToPoint;
pathElement       119 Source/platform/graphics/Path.cpp             pathElement.points = convertPathPoints(pathPoints, &pts[0], 1);
pathElement       122 Source/platform/graphics/Path.cpp             pathElement.type = PathElementAddLineToPoint;
pathElement       123 Source/platform/graphics/Path.cpp             pathElement.points = convertPathPoints(pathPoints, &pts[1], 1);
pathElement       126 Source/platform/graphics/Path.cpp             pathElement.type = PathElementAddQuadCurveToPoint;
pathElement       127 Source/platform/graphics/Path.cpp             pathElement.points = convertPathPoints(pathPoints, &pts[1], 2);
pathElement       130 Source/platform/graphics/Path.cpp             pathElement.type = PathElementAddCurveToPoint;
pathElement       131 Source/platform/graphics/Path.cpp             pathElement.points = convertPathPoints(pathPoints, &pts[1], 3);
pathElement       134 Source/platform/graphics/Path.cpp             pathElement.type = PathElementCloseSubpath;
pathElement       135 Source/platform/graphics/Path.cpp             pathElement.points = convertPathPoints(pathPoints, 0, 0);
pathElement       142 Source/platform/graphics/Path.cpp         function(info, &pathElement);