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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 70 // Returns whether or not the SVGElement object contains a valid color-interpolation-filters attribute
71 static bool getSVGElementColorSpace(SVGElement* svgElement, ColorSpace& cs)
73 if (!svgElement)
76 const RenderObject* renderer = svgElement->renderer();
83 } else if (!svgElement->presentationAttributeStyle()) {
87 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters);
154 for (SVGElement* element = Traversal<SVGElement>::firstChild(filterElement); element; element = Traversal<SVGElement>::nextSibling(*element))
    [all...]
SVGRenderTreeAsText.cpp 257 SVGElement* element = container->element();
340 SVGElement* svgElement = shape.element();
341 ASSERT(svgElement);
342 SVGLengthContext lengthContext(svgElement);
344 if (isSVGRectElement(*svgElement)) {
345 SVGRectElement& element = toSVGRectElement(*svgElement);
350 } else if (isSVGLineElement(*svgElement)) {
351 SVGLineElement& element = toSVGLineElement(*svgElement);
356 } else if (isSVGEllipseElement(*svgElement)) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 64 HashSet<SVGElement*>::const_iterator it = m_referencedElements.begin();
65 HashSet<SVGElement*>::const_iterator end = m_referencedElements.end();
69 SVGElement* referencedElement = *it;
112 SVGElement* svgElement = toSVGElement(element);
114 m_referencedElements.add(svgElement);
116 svgElement->setCursorImageValue(this);
117 cursorElement->addClient(svgElement);
192 void CSSCursorImageValue::removeReferencedElement(SVGElement* element)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUseElement.cpp 56 , m_svgLoadEventTimer(this, &SVGElement::svgLoadEventTimerFired)
167 void transferUseWidthAndHeightIfNeeded(const SVGUseElement& use, SVGElement* shadowElement, const SVGElement& originalElement)
198 SVGElement::InvalidationGuard invalidationGuard(this);
352 SVGElement& svgElement = toSVGElement(toClone);
353 ASSERT(!svgElement.correspondingElement());
354 toSVGElement(clone.get())->setCorrespondingElement(&svgElement);
363 void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
469 bool SVGUseElement::buildShadowTree(SVGElement* target, SVGElement* targetInstance, bool foundUse
    [all...]
SVGFELightElement.cpp 35 : SVGElement(tagName, document)
59 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement& svgElement)
61 return Traversal<SVGFELightElement>::firstChild(svgElement);
85 SVGElement::parseAttribute(name, value);
120 SVGElement::svgAttributeChanged(attrName);
124 SVGElement::InvalidationGuard invalidationGuard(this);
159 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.cpp 29 #include "core/svg/SVGElement.h"
243 if (SVGElement* svgElement = toSVGElement(node)->correspondingElement())
244 return svgElement;
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 171 : SVGElement(tagName, doc)
239 SVGElement* svgTarget = target && target->isSVGElement() ? toSVGElement(target) : 0;
264 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName)
266 ASSERT(svgElement);
277 const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix);
309 SVGElement::insertedInto(rootParent);
349 SVGElement::removedFrom(rootParent);
545 SVGElement::parseAttribute(name, value);
551 SVGElement::svgAttributeChanged(attrName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 102 #include "core/svg/SVGElement.h"
414 // if SVGElement::isAnimatableAttribute is true, but the list of
800 SVGElement* svgElement = toSVGElement(this);
802 if (svgElement->getBoundingBox(localRect))
845 SVGElement* svgElement = toSVGElement(this);
847 if (svgElement->getBoundingBox(localRect))
    [all...]

Completed in 364 milliseconds