Searched refs:svgElement (Results 1 - 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGTests.cpp101 SVGElement* svgElement = const_cast<SVGElement*>(targetElement);
102 ASSERT(svgElement);
103 bool valid = svgElement->isValid();
104 if (valid && !svgElement->attached())
105 svgElement->attach();
106 if (!valid && svgElement->attached())
107 svgElement->detach();
H A DSVGFELightElement.cpp56 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement* svgElement) argument
58 for (Node* node = svgElement->firstChild(); node; node = node->nextSibling()) {
68 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement) argument
70 SVGFELightElement* lightNode = findLightElement(svgElement);
H A DSVGUseElement.cpp900 RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(SVGNames::svgTag, document()); local
903 svgElement->attributes()->setAttributes(*element->attributes());
909 svgElement->appendChild(newChild.release(), ec);
918 if (subtreeContainsDisallowedElement(svgElement.get()))
919 removeDisallowedElementsFromSubtree(svgElement.get());
921 RefPtr<Node> replacingElement(svgElement.get());
925 element->parentNode()->replaceChild(svgElement.release(), element, ec);
/external/webkit/Source/WebCore/css/
H A DCSSCursorImageValue.cpp104 SVGElement* svgElement = static_cast<SVGElement*>(element);
105 m_referencedElements.add(svgElement);
106 svgElement->setCursorImageValue(this);
107 cursorElement->addClient(svgElement);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGPath.cpp281 SVGElement* svgElement = static_cast<SVGElement*>(node()); local
282 ASSERT(svgElement && svgElement->document());
283 if (!svgElement->isStyled())
286 SVGStyledElement* styledElement = static_cast<SVGStyledElement*>(svgElement);
303 return m_markerLayoutInfo.calculateBoundaries(markerStart, markerMid, markerEnd, svgStyle->strokeWidth().value(svgElement), m_path);
H A DSVGRenderTreeAsText.cpp388 SVGElement* svgElement = static_cast<SVGElement*>(path.node()); local
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
[all...]
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp148 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const String& attributeName) argument
150 ASSERT(svgElement);
163 String namespaceURI = svgElement->lookupNamespaceURI(prefix);
/external/webkit/Source/WebCore/dom/
H A DElement.cpp516 const SVGElement* svgElement = static_cast<const SVGElement*>(this); local
518 if (svgElement->boundingBox(localRect))
580 const SVGElement* svgElement = static_cast<const SVGElement*>(this); local
582 if (svgElement->boundingBox(localRect))

Completed in 86 milliseconds