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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGModelObject.cpp 42 RenderSVGModelObject::RenderSVGModelObject(SVGElement* node)
131 SVGElement* stopAtElement = element->nearestViewportElement();
138 SVGElement* currentElement = toSVGElement(current);
185 SVGGraphicsElement* svgElement = toSVGGraphicsElement(renderer->node());
186 getElementCTM(svgElement, ctm);
187 ASSERT(svgElement->renderer());
188 return intersectsAllowingEmpty(rect, ctm.mapRect(svgElement->renderer()->repaintRectInLocalCoordinates()));
198 SVGGraphicsElement* svgElement = toSVGGraphicsElement(renderer->node());
199 getElementCTM(svgElement, ctm);
200 ASSERT(svgElement->renderer())
    [all...]
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();
85 RefPtr<CSSValue> cssValue = svgElement->getPresentationAttribute(
157 SVGElement* element = toSVGElement(node);
SVGRenderTreeAsText.cpp 237 SVGElement* element = container->element();
319 SVGElement* svgElement = shape.element();
320 SVGLengthContext lengthContext(svgElement);
322 if (svgElement->hasTagName(SVGNames::rectTag)) {
323 SVGRectElement* element = toSVGRectElement(svgElement);
328 } else if (svgElement->hasTagName(SVGNames::lineTag)) {
329 SVGLineElement* element = toSVGLineElement(svgElement);
334 } else if (svgElement->hasTagName(SVGNames::ellipseTag)) {
335 SVGEllipseElement* element = toSVGEllipseElement(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;
111 SVGElement* svgElement = toSVGElement(element);
112 m_referencedElements.add(svgElement);
113 svgElement->setCursorImageValue(this);
114 cursorElement->addClient(svgElement);
187 void CSSCursorImageValue::removeReferencedElement(SVGElement* element)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFELightElement.cpp 61 : SVGElement(tagName, document)
67 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement* svgElement)
69 for (Node* node = svgElement->firstChild(); node; node = node->nextSibling()) {
79 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement)
81 SVGFELightElement* lightNode = findLightElement(svgElement);
108 SVGElement::parseAttribute(name, value);
168 SVGElement::svgAttributeChanged(attrName);
206 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta)
    [all...]
SVGUseElement.cpp 81 , m_svgLoadEventTimer(this, &SVGElement::svgLoadEventTimerFired)
274 SVGElement* element = targetInstance->correspondingElement();
282 SVGElement* shadowTreeElement = targetInstance->shadowTreeElement();
426 void SVGUseElement::buildShadowAndInstanceTree(SVGElement* target)
575 void SVGUseElement::buildInstanceTree(SVGElement* target, SVGElementInstance* targetInstance, bool& foundProblem, bool foundUse)
583 SVGElement* newTarget = 0;
608 SVGElement* element = 0;
636 bool SVGUseElement::hasCycleUseReferencing(SVGUseElement* use, SVGElementInstance* targetInstance, SVGElement*& newTarget)
654 SVGElement* element = instance->correspondingElement();
680 void SVGUseElement::buildShadowTree(SVGElement* target, SVGElementInstance* targetInstance
    [all...]
SVGFilterElement.cpp 61 : SVGElement(SVGNames::filterTag, document)
124 SVGElement::parseAttribute(name, value);
158 SVGElement::svgAttributeChanged(attrName);
177 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, childCountDelta);
203 const SVGElement* svgElement = toSVGElement(&child);
234 return allowedChildElementTags.contains<SVGAttributeHashTranslator>(svgElement->tagQName());
SVGSVGElement.cpp 329 PassRefPtr<NodeList> SVGSVGElement::collectIntersectionOrEnclosureList(const SVGRect& rect, SVGElement* referenceElement, CollectIntersectionOrEnclosure collect) const
335 SVGElement* svgElement = toSVGElement(element);
337 if (checkIntersection(svgElement, rect))
340 if (checkEnclosure(svgElement, rect))
350 PassRefPtr<NodeList> SVGSVGElement::getIntersectionList(const SVGRect& rect, SVGElement* referenceElement) const
355 PassRefPtr<NodeList> SVGSVGElement::getEnclosureList(const SVGRect& rect, SVGElement* referenceElement) const
360 bool SVGSVGElement::checkIntersection(SVGElement* element, const SVGRect& rect) const
367 bool SVGSVGElement::checkEnclosure(SVGElement* element, const SVGRect& rect) const
420 AffineTransform SVGSVGElement::localCoordinateSpaceTransform(SVGElement::CTMScope mode) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 161 : SVGElement(tagName, doc)
218 SVGElement* svgTarget = target && target->isSVGElement() ? toSVGElement(target) : 0;
242 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString& attributeName)
244 ASSERT(svgElement);
255 const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix);
287 SVGElement::insertedInto(rootParent);
329 SVGElement::removedFrom(rootParent);
521 SVGElement::parseAttribute(name, value);
527 SVGElement::svgAttributeChanged(attrName)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Element.cpp 96 #include "core/svg/SVGElement.h"
794 SVGElement* svgElement = toSVGElement(this);
796 if (svgElement->getBoundingBox(localRect))
839 SVGElement* svgElement = toSVGElement(this);
841 if (svgElement->getBoundingBox(localRect))
    [all...]

Completed in 58 milliseconds