HomeSort by relevance Sort by last modified time
    Searched refs:svgElement (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGTests.cpp 29 #include "SVGElement.h"
95 bool SVGTests::handleAttributeChange(const SVGElement* targetElement, const QualifiedName& attrName)
101 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()
    [all...]
SVGFELightElement.cpp 51 : SVGElement(tagName, document)
56 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement* svgElement)
58 for (Node* node = svgElement->firstChild(); node; node = node->nextSibling()) {
68 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement)
70 SVGFELightElement* lightNode = findLightElement(svgElement);
100 SVGElement::parseMappedAttribute(attr);
105 SVGElement::svgAttributeChanged(attrName);
139 SVGElement::synchronizeProperty(attrName)
    [all...]
SVGUseElement.cpp 252 SVGElement* correspondingElement = targetInstance->correspondingElement();
259 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement();
301 SVGElement* correspondingElement = targetInstance->correspondingElement();
307 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement();
328 SVGElement* shadowRoot = m_targetElementInstance->shadowTreeElement();
351 if (SVGElement* shadowRoot = m_targetElementInstance->shadowTreeElement())
382 SVGElement* element = targetInstance->correspondingElement();
385 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement();
524 SVGElement* target = 0;
526 target = static_cast<SVGElement*>(targetElement)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSCursorImageValue.cpp 69 HashSet<SVGElement*>::const_iterator it = m_referencedElements.begin();
70 HashSet<SVGElement*>::const_iterator end = m_referencedElements.end();
73 SVGElement* referencedElement = *it;
104 SVGElement* svgElement = static_cast<SVGElement*>(element);
105 m_referencedElements.add(svgElement);
106 svgElement->setCursorImageValue(this);
107 cursorElement->addClient(svgElement);
130 void CSSCursorImageValue::removeReferencedElement(SVGElement* element
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGPath.cpp 281 SVGElement* svgElement = static_cast<SVGElement*>(node());
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);
SVGRenderTreeAsText.cpp 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);
    [all...]
  /external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp 117 : SVGElement(tagName, doc)
148 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const String& attributeName)
150 ASSERT(svgElement);
163 String namespaceURI = svgElement->lookupNamespaceURI(prefix);
172 SVGElement::insertedIntoDocument();
203 SVGElement::removedFromDocument();
208 SVGElement::finishParsingChildren();
397 SVGElement::parseMappedAttribute(attr);
402 SVGElement::attributeChanged(attr, preserveDecls)
    [all...]
  /external/webkit/Source/WebCore/dom/
Element.cpp 65 #include "SVGElement.h"
516 const SVGElement* svgElement = static_cast<const SVGElement*>(this);
518 if (svgElement->boundingBox(localRect))
580 const SVGElement* svgElement = static_cast<const SVGElement*>(this);
582 if (svgElement->boundingBox(localRect))
    [all...]

Completed in 1857 milliseconds