HomeSort by relevance Sort by last modified time
    Searched refs:isSVGElement (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGGElement.cpp 55 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElement();
SVGElement.h 235 bool isSVGElement() const WTF_DELETED_FUNCTION; // This will catch anyone doing an unnecessary check.
269 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement());
276 return isSVGElement() && toSVGElement(*this).hasTagName(name);
284 inline bool is##thisType(const Node& node) { return node.isSVGElement() ? is##thisType(toSVGElement(node)) : false; } \
SVGUseElement.cpp 231 if (!node->isSVGElement())
321 if (target->isSVGElement()) {
332 if (!clone->isSVGElement())
425 if (!n || !n->isSVGElement())
446 if (n->isSVGElement() && isDirectReference(toSVGElement(*n)))
482 if (newChild->isSVGElement()) {
496 if (targetElement && targetElement->isSVGElement())
508 while (instance && instance->isSVGElement()) {
572 ASSERT(newChild->isSVGElement());
SVGAElement.cpp 104 if (parentNode() && parentNode()->isSVGElement() && toSVGElement(parentNode())->isTextContent())
SVGFEImageElement.cpp 102 } else if (target->isSVGElement()) {
SVGTextPositioningElement.cpp 127 ASSERT(node->isSVGElement());
SVGForeignObjectElement.cpp 130 while (ancestor && ancestor->isSVGElement()) {
SVGViewSpec.cpp 88 if (!element || !element->isSVGElement())
SVGElement.cpp 177 if (inUseShadowTree() && parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElement())
181 return !parentNode()->isSVGElement();
261 if (rootParent->isSVGElement() && !parentNode()) {
269 ASSERT_WITH_SECURITY_IMPLICATION(!rootParent->isSVGElement() || !toSVGElement(rootParent)->m_elementsWithRelativeLengths.contains(this));
383 for (ContainerNode* currentNode = this; currentNode && currentNode->isSVGElement(); currentNode = currentNode->parentNode()) {
    [all...]
SVGGraphicsElement.cpp 81 if (!currentElement->isSVGElement())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTransformableContainer.cpp 44 if (node->isSVGElement() && toSVGElement(node)->isValid())
56 if (!node->isSVGElement() || !toSVGElement(node)->isValid())
SVGResourcesCache.cpp 115 return renderer->node() && renderer->node()->isSVGElement() && !renderer->isSVGInlineText();
122 ASSERT(renderer->node()->isSVGElement());
SVGRenderSupport.cpp 208 if (SVGElement* element = child->node()->isSVGElement() ? toSVGElement(child->node()) : 0) {
317 ASSERT(object->node()->isSVGElement());
346 ASSERT(object->node()->isSVGElement());
RenderSVGResource.cpp 151 if (!object->node() || !object->node()->isSVGElement())
  /external/chromium_org/third_party/WebKit/Source/core/dom/
RenderTreeBuilder.cpp 81 if (m_node->isSVGElement()) {
83 if (!isSVGSVGElement(*m_node) && !m_renderingParent->isSVGElement())
VisitedLinkState.cpp 45 ASSERT(element.isSVGElement());
PresentationAttributeStyle.cpp 183 style = MutableStylePropertySet::create(element.isSVGElement() ? SVGAttributeMode : HTMLAttributeMode);
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp 113 return element.isSVGElement() ? element.getAttribute(typeAttr) : element.fastGetAttribute(typeAttr);
137 if (element().isSVGElement()) {
216 if (candidate.isSVGElement() && toSVGElement(candidate).animatedSMILStyleProperties())
260 if (parent->isSVGElement() && toSVGElement(parent)->animatedSMILStyleProperties())
StyleAdjuster.cpp 228 if (e && e->isSVGElement()) {
230 if (!(isSVGSVGElement(*e) && e->parentNode() && !e->parentNode()->isSVGElement()))
  /external/chromium_org/third_party/WebKit/Source/core/events/
TreeScopeEventContext.h 95 return target.toNode() && !target.toNode()->isSVGElement() && !target.toNode()->treeScope().isInclusiveOlderSiblingShadowRootOrAncestorTreeScopeOf(treeScope());
Event.cpp 251 if (node && node->isSVGElement()) {
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 92 if (!element || !element->isSVGElement())
CSSDefaultStyleSheets.cpp 156 if (element->isSVGElement() && !m_svgStyleSheet) {
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementRegistrationContext.cpp 132 if (!element->isHTMLElement() && !element->isSVGElement())
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 126 if (!hrefElement || !hrefElement->isSVGElement())

Completed in 2403 milliseconds

1 2