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 71 // Returns whether or not the SVGElement object contains a valid color-interpolation-filters attribute
72 static bool getSVGElementColorSpace(SVGElement* svgElement, ColorSpace& cs)
74 if (!svgElement)
77 const RenderObject* renderer = svgElement->renderer();
84 } else if (!svgElement->presentationAttributeStyle()) {
88 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters);
155 for (SVGElement* element = Traversal<SVGElement>::firstChild(filterElement); element; element = Traversal<SVGElement>::nextSibling(*element))
    [all...]
SVGRenderTreeAsText.cpp 258 SVGElement* element = container->element();
341 SVGElement* svgElement = shape.element();
342 ASSERT(svgElement);
343 SVGLengthContext lengthContext(svgElement);
345 if (isSVGRectElement(*svgElement)) {
346 SVGRectElement& element = toSVGRectElement(*svgElement);
351 } else if (isSVGLineElement(*svgElement)) {
352 SVGLineElement& element = toSVGLineElement(*svgElement);
357 } 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)
149 void transferUseWidthAndHeightIfNeeded(const SVGUseElement& use, SVGElement* shadowElement, const SVGElement& originalElement)
181 SVGElement::InvalidationGuard invalidationGuard(this);
335 SVGElement& svgElement = toSVGElement(toClone);
336 ASSERT(!svgElement.correspondingElement());
337 toSVGElement(clone.get())->setCorrespondingElement(&svgElement);
346 void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
409 static bool isDirectReference(const SVGElement& element
    [all...]
SVGFELightElement.cpp 36 : SVGElement(tagName, document)
60 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement& svgElement)
62 return Traversal<SVGFELightElement>::firstChild(svgElement);
96 SVGElement::parseAttribute(name, value);
131 SVGElement::svgAttributeChanged(attrName);
135 SVGElement::InvalidationGuard invalidationGuard(this);
170 SVGElement::childrenChanged(change);
  /external/chromium_org/third_party/WebKit/Source/core/events/
Event.cpp 29 #include "core/svg/SVGElement.h"
252 if (SVGElement* svgElement = toSVGElement(node)->correspondingElement())
253 return svgElement;
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 173 : SVGElement(tagName, doc)
242 SVGElement* svgTarget = target && target->isSVGElement() ? toSVGElement(target) : 0;
267 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName)
269 ASSERT(svgElement);
280 const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix);
312 SVGElement::insertedInto(rootParent);
354 SVGElement::removedFrom(rootParent);
553 SVGElement::parseAttributeNew(name, value);
560 SVGElement::svgAttributeChanged(attrName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 109 #include "core/svg/SVGElement.h"
422 // if SVGElement::isAnimatableAttribute is true, but the list of
780 SVGElement* svgElement = toSVGElement(this);
782 if (svgElement->getBoundingBox(localRect))
825 SVGElement* svgElement = toSVGElement(this);
827 if (svgElement->getBoundingBox(localRect))
    [all...]

Completed in 582 milliseconds