Home
last modified time | relevance | path

Searched refs:svgElement (Results 1 – 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGModelObject.cpp185 SVGGraphicsElement* svgElement = toSVGGraphicsElement(renderer->node()); in checkIntersection() local
186 getElementCTM(svgElement, ctm); in checkIntersection()
187 ASSERT(svgElement->renderer()); in checkIntersection()
188 …return intersectsAllowingEmpty(rect, ctm.mapRect(svgElement->renderer()->repaintRectInLocalCoordin… in checkIntersection()
198 SVGGraphicsElement* svgElement = toSVGGraphicsElement(renderer->node()); in checkEnclosure() local
199 getElementCTM(svgElement, ctm); in checkEnclosure()
200 ASSERT(svgElement->renderer()); in checkEnclosure()
201 return rect.contains(ctm.mapRect(svgElement->renderer()->repaintRectInLocalCoordinates())); in checkEnclosure()
DSVGRenderTreeAsText.cpp319 SVGElement* svgElement = shape.element(); in operator <<() local
320 SVGLengthContext lengthContext(svgElement); in operator <<()
322 if (svgElement->hasTagName(SVGNames::rectTag)) { in operator <<()
323 SVGRectElement* element = toSVGRectElement(svgElement); in operator <<()
328 } else if (svgElement->hasTagName(SVGNames::lineTag)) { in operator <<()
329 SVGLineElement* element = toSVGLineElement(svgElement); in operator <<()
334 } else if (svgElement->hasTagName(SVGNames::ellipseTag)) { in operator <<()
335 SVGEllipseElement* element = toSVGEllipseElement(svgElement); in operator <<()
340 } else if (svgElement->hasTagName(SVGNames::circleTag)) { in operator <<()
341 SVGCircleElement* element = toSVGCircleElement(svgElement); in operator <<()
[all …]
DReferenceFilterBuilder.cpp71 static bool getSVGElementColorSpace(SVGElement* svgElement, ColorSpace& cs) in getSVGElementColorSpace() argument
73 if (!svgElement) in getSVGElementColorSpace()
76 const RenderObject* renderer = svgElement->renderer(); in getSVGElementColorSpace()
85 RefPtr<CSSValue> cssValue = svgElement->getPresentationAttribute( in getSVGElementColorSpace()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCursorImageValue.cpp111 SVGElement* svgElement = toSVGElement(element); in updateIfSVGCursorIsUsed() local
112 m_referencedElements.add(svgElement); in updateIfSVGCursorIsUsed()
113 svgElement->setCursorImageValue(this); in updateIfSVGCursorIsUsed()
114 cursorElement->addClient(svgElement); in updateIfSVGCursorIsUsed()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGFELightElement.cpp67 SVGFELightElement* SVGFELightElement::findLightElement(const SVGElement* svgElement) in findLightElement() argument
69 for (Node* node = svgElement->firstChild(); node; node = node->nextSibling()) { in findLightElement()
79 PassRefPtr<LightSource> SVGFELightElement::findLightSource(const SVGElement* svgElement) in findLightSource() argument
81 SVGFELightElement* lightNode = findLightElement(svgElement); in findLightSource()
DSVGUseElement.cpp768 RefPtr<SVGSVGElement> svgElement = SVGSVGElement::create(*referencedDocument()); in expandSymbolElementsInShadowTree() local
771 svgElement->cloneDataFromElement(*toElement(element)); in expandSymbolElementsInShadowTree()
776 svgElement->appendChild(newChild.release()); in expandSymbolElementsInShadowTree()
784 if (subtreeContainsDisallowedElement(svgElement.get())) in expandSymbolElementsInShadowTree()
785 removeDisallowedElementsFromSubtree(*svgElement); in expandSymbolElementsInShadowTree()
787 RefPtr<Node> replacingElement(svgElement.get()); in expandSymbolElementsInShadowTree()
790 element->parentNode()->replaceChild(svgElement.release(), element); in expandSymbolElementsInShadowTree()
DSVGFilterElement.cpp203 const SVGElement* svgElement = toSVGElement(&child); in childShouldCreateRenderer() local
234 return allowedChildElementTags.contains<SVGAttributeHashTranslator>(svgElement->tagQName()); in childShouldCreateRenderer()
DSVGSVGElement.cpp335 SVGElement* svgElement = toSVGElement(element); in collectIntersectionOrEnclosureList() local
337 if (checkIntersection(svgElement, rect)) in collectIntersectionOrEnclosureList()
340 if (checkEnclosure(svgElement, rect)) in collectIntersectionOrEnclosureList()
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
DSVGSMILElement.cpp242 static inline QualifiedName constructQualifiedName(const SVGElement* svgElement, const AtomicString… in constructQualifiedName() argument
244 ASSERT(svgElement); in constructQualifiedName()
255 const AtomicString& namespaceURI = svgElement->lookupNamespaceURI(prefix); in constructQualifiedName()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DElement.cpp794 SVGElement* svgElement = toSVGElement(this); in boundsInRootViewSpace() local
796 if (svgElement->getBoundingBox(localRect)) in boundsInRootViewSpace()
839 SVGElement* svgElement = toSVGElement(this); in getBoundingClientRect() local
841 if (svgElement->getBoundingBox(localRect)) in getBoundingClientRect()