Home | History | Annotate | Download | only in svg

Lines Matching defs:svgElement

314     ts << " [id=\"" << static_cast<SVGElement*>(node)->getIdAttribute() << "\"]";
337 SVGElement* element = static_cast<SVGElement*>(path.node());
388 SVGElement* svgElement = static_cast<SVGElement*>(path.node());
390 if (svgElement->hasTagName(SVGNames::rectTag)) {
391 SVGRectElement* element = static_cast<SVGRectElement*>(svgElement);
396 } else if (svgElement->hasTagName(SVGNames::lineTag)) {
397 SVGLineElement* element = static_cast<SVGLineElement*>(svgElement);
402 } else if (svgElement->hasTagName(SVGNames::ellipseTag)) {
403 SVGEllipseElement* element = static_cast<SVGEllipseElement*>(svgElement);
408 } else if (svgElement->hasTagName(SVGNames::circleTag)) {
409 SVGCircleElement* element = static_cast<SVGCircleElement*>(svgElement);
413 } else if (svgElement->hasTagName(SVGNames::polygonTag) || svgElement->hasTagName(SVGNames::polylineTag)) {
414 SVGPolyElement* element = static_cast<SVGPolyElement*>(svgElement);
416 } else if (svgElement->hasTagName(SVGNames::pathTag)) {
417 SVGPathElement* element = static_cast<SVGPathElement*>(svgElement);