OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isSVGElement
(Results
1 - 25
of
59
) sorted by null
1
2
3
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGStopElement.h
55
return node.
isSVGElement
() && toSVGElement(node).isGradientStop();
SVGSwitchElement.cpp
59
if (!node->
isSVGElement
())
SVGGElement.cpp
100
return parentOrShadowHostElement() && parentOrShadowHostElement()->
isSVGElement
();
SVGGraphicsElement.h
81
return node.
isSVGElement
() && toSVGElement(node).isSVGGraphicsElement();
SVGAElement.cpp
145
if (parentNode() && parentNode()->
isSVGElement
() && toSVGElement(parentNode())->isTextContent())
234
if (parentNode() && parentNode()->
isSVGElement
())
SVGForeignObjectElement.cpp
130
if (child.
isSVGElement
())
145
while (ancestor && ancestor->
isSVGElement
()) {
SVGTextContentElement.h
127
return node.
isSVGElement
() && toSVGElement(node).isTextContent();
SVGUseElement.cpp
335
if (!node->
isSVGElement
())
418
if (target->
isSVGElement
()) {
549
if (n->
isSVGElement
() && toSVGElement(n)->isSVGGraphicsElement()) {
569
if (n->
isSVGElement
() && isDirectReference(n))
609
if (node->
isSVGElement
())
641
if (targetElement && targetElement->
isSVGElement
())
715
if (targetElement && targetElement->
isSVGElement
())
729
ASSERT(newChild->
isSVGElement
());
[
all
...]
SVGMPathElement.cpp
75
} else if (target->
isSVGElement
()) {
SVGElement.cpp
173
if (!parentOrShadowHostElement() || parentOrShadowHostElement()->
isSVGElement
())
213
if (isInShadowTree() && parentOrShadowHostElement() && parentOrShadowHostElement()->
isSVGElement
())
217
return !parentNode()->
isSVGElement
();
269
if (titleElement->hasTagName(SVGNames::titleTag) && titleElement->
isSVGElement
())
362
if (rootParent->
isSVGElement
() && !parentNode()) {
370
ASSERT_WITH_SECURITY_IMPLICATION(!rootParent->
isSVGElement
() || !toSVGElement(rootParent)->m_elementsWithRelativeLengths.contains(this));
479
for (ContainerNode* currentNode = this; currentNode && currentNode->
isSVGElement
(); currentNode = currentNode->parentNode()) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
SharedStyleFinder.cpp
112
return element.
isSVGElement
() ? element.getAttribute(typeAttr) : element.fastGetAttribute(typeAttr);
136
if (element().
isSVGElement
()) {
180
if (candidate.
isSVGElement
() && toSVGElement(candidate).animatedSMILStyleProperties())
230
if (parent->
isSVGElement
() && toSVGElement(parent)->animatedSMILStyleProperties())
StyleResolverState.h
133
bool useSVGZoomRules() const { return element() && element()->
isSVGElement
(); }
/external/chromium_org/third_party/WebKit/Source/core/events/
EventPath.cpp
56
if (!referenceNode->
isSVGElement
() || !referenceNode->isInShadowTree())
227
bool
isSVGElement
= at(0).node()->
isSVGElement
();
234
} else if (*lastTreeScope != currentTreeScope && !
isSVGElement
) {
EventContext.h
99
return target && target->toNode() && !target->toNode()->
isSVGElement
() && !target->toNode()->treeScope().isInclusiveAncestorOf(m_node->treeScope());
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceClipper.cpp
99
if (!childNode->
isSVGElement
() || !toSVGElement(childNode)->isSVGGraphicsElement())
164
if (!target->node()->
isSVGElement
()
273
if (!childNode->
isSVGElement
() || !renderer)
313
if (!childNode->
isSVGElement
() || !renderer)
343
if (!childNode->
isSVGElement
() || !renderer)
ReferenceFilterBuilder.cpp
138
if (!filter->
isSVGElement
() || !filter->hasTagName(SVGNames::filterTag))
154
if (!node->
isSVGElement
())
RenderSVGResourceMasker.cpp
139
if (!childNode->
isSVGElement
() || !renderer)
155
if (!childNode->
isSVGElement
() || !renderer)
SVGResourcesCache.cpp
118
return renderer->node() && renderer->node()->
isSVGElement
() && !renderer->isSVGInlineText();
125
ASSERT(renderer->node()->
isSVGElement
());
SVGRenderSupport.cpp
228
if (SVGElement* element = child->node()->
isSVGElement
() ? toSVGElement(child->node()) : 0) {
354
ASSERT(object->node()->
isSVGElement
());
383
ASSERT(object->node()->
isSVGElement
());
/external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentStyleSheetCollection.cpp
77
} else if ((n->isHTMLElement() && (n->hasTagName(linkTag) || n->hasTagName(styleTag))) || (n->
isSVGElement
() && n->hasTagName(SVGNames::styleTag))) {
100
} else if (n->
isSVGElement
() && n->hasTagName(SVGNames::styleTag)) {
VisitedLinkState.cpp
45
ASSERT(element.
isSVGElement
());
PresentationAttributeStyle.cpp
180
style = MutableStylePropertySet::create(element.
isSVGElement
() ? SVGAttributeMode : HTMLAttributeMode);
/external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElementRegistrationContext.cpp
129
if (!element->isHTMLElement() && !element->
isSVGElement
())
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp
91
if (!element || !element->
isSVGElement
())
CSSDefaultStyleSheets.cpp
138
if (element->
isSVGElement
() && !svgStyleSheet) {
Completed in 104 milliseconds
1
2
3