Searched refs:targetElement (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGAnimateMotionElement.cpp58 SVGElement* targetElement = this->targetElement(); local
59 if (!targetElement)
63 if (!targetElement->isStyledTransformable() && !targetElement->hasTagName(SVGNames::textTag))
67 if (targetElement->hasTagName(gTag)
68 || targetElement->hasTagName(defsTag)
69 || targetElement->hasTagName(useTag)
70 || targetElement->hasTagName(imageTag)
71 || targetElement
182 SVGElement* targetElement = this->targetElement(); local
222 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGAnimateTransformElement.cpp64 SVGElement* targetElement = this->targetElement(); local
65 if (!targetElement)
68 return determineAnimatedAttributeType(targetElement) == AnimatedTransformList;
71 AnimatedAttributeType SVGAnimateTransformElement::determineAnimatedAttributeType(SVGElement* targetElement) const
73 ASSERT(targetElement);
77 if (targetElement->animatedPropertyTypeForAttribute(attributeName()) != AnimatedTransformList)
116 SVGElement* targetElement = this->targetElement(); local
117 if (!targetElement || determineAnimatedAttributeTyp
134 SVGElement* targetElement = this->targetElement(); local
182 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGAnimationElement.idl32 readonly attribute SVGElement targetElement;
H A DSVGAnimateElement.cpp91 static inline void adjustForCurrentColor(SVGElement* targetElement, Color& color) argument
93 ASSERT(targetElement);
95 if (RenderObject* targetRenderer = targetElement->renderer())
101 static inline void adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value) argument
105 ASSERT(targetElement);
107 Element* parent = targetElement->parentElement();
118 SVGElement* targetElement = this->targetElement(); local
119 if (!targetElement)
122 return determineAnimatedAttributeType(targetElement) !
173 SVGElement* targetElement = 0; local
323 inheritsFromProperty(SVGElement* targetElement, const QualifiedName& attributeName, const String& value) argument
341 SVGElement* targetElement = this->targetElement(); local
396 SVGElement* targetElement = this->targetElement(); local
433 SVGElement* targetElement = this->targetElement(); local
493 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGDocumentExtensions.cpp140 void SVGDocumentExtensions::addAnimationElementToTarget(SVGSMILElement* animationElement, SVGElement* targetElement) argument
142 ASSERT(targetElement);
145 if (HashSet<SVGSMILElement*>* animationElementsForTarget = m_animatedElements.get(targetElement)) {
152 m_animatedElements.set(targetElement, animationElementsForTarget);
155 void SVGDocumentExtensions::removeAnimationElementFromTarget(SVGSMILElement* animationElement, SVGElement* targetElement) argument
157 ASSERT(targetElement);
160 HashMap<SVGElement*, HashSet<SVGSMILElement*>* >::iterator it = m_animatedElements.find(targetElement);
173 void SVGDocumentExtensions::removeAllAnimationElementsFromTarget(SVGElement* targetElement) argument
175 ASSERT(targetElement);
176 HashSet<SVGSMILElement*>* animationElementsForTarget = m_animatedElements.take(targetElement);
[all...]
H A DSVGAnimationElement.cpp293 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName) argument
295 ASSERT(targetElement);
296 if (!targetElement->isStyled())
306 SVGElement* targetElement = this->targetElement();
308 if (!targetElement || attributeName == anyQName() || value.isNull())
312 if (targetElement->isStyled())
313 static_cast<SVGStyledElement*>(targetElement)->setInstanceUpdatesBlocked(true);
315 bool attributeIsCSSProperty = isTargetAttributeCSSProperty(targetElement, attributeName);
324 targetElement
[all...]
H A DSVGAElement.cpp167 Element* targetElement = document()->getElementById(url.substring(1)); local
168 if (SVGSMILElement::isSMILElement(targetElement)) {
169 static_cast<SVGSMILElement*>(targetElement)->beginByLinkActivation();
H A DSVGTests.cpp95 bool SVGTests::handleAttributeChange(const SVGElement* targetElement, const QualifiedName& attrName) argument
99 if (!targetElement->inDocument())
101 SVGElement* svgElement = const_cast<SVGElement*>(targetElement);
H A DSVGUseElement.cpp462 Element* targetElement = document()->getElementById(id); local
465 if (!targetElement) {
506 Element* targetElement = document()->getElementById(id); local
507 if (!targetElement) {
525 if (targetElement && targetElement->isSVGElement())
526 target = static_cast<SVGElement*>(targetElement);
757 Element* targetElement = document()->getElementById(id); local
759 if (targetElement && targetElement
838 Element* targetElement = document()->getElementById(id); local
[all...]
H A DSVGTextPathElement.cpp160 Element* targetElement = ownerDocument()->getElementById(id); local
161 if (!targetElement) {
/external/apache-xml/src/main/java/org/apache/xpath/
H A DWhitespaceStrippingElementMatcher.java38 * @param targetElement Element to check
45 XPathContext support, Element targetElement) throws TransformerException;
44 shouldStripWhiteSpace( XPathContext support, Element targetElement) argument
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGTextPath.cpp48 Element* targetElement = textPathElement->document()->getElementById(pathId); local
49 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag))
52 SVGPathElement* pathElement = static_cast<SVGPathElement*>(targetElement);
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.cpp199 SVGElement* targetElement = key.first;
201 ASSERT(targetElement);
204 if (SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName))
205 baseValue = computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()));
207 baseValue = targetElement->getAttribute(attributeName);
238 SVGElement* targetElement = animation->targetElement(); local
240 if (!targetElement || !targetElement->hasID() || targetElement
264 SVGElement* targetElement = animation->targetElement(); local
[all...]
H A DSVGSMILElement.h57 SVGElement* targetElement() const;
H A DSVGSMILElement.cpp430 return condition.m_baseID.isEmpty() ? targetElement() : document()->getElementById(condition.m_baseID);
498 SVGElement* SVGSMILElement::targetElement() const function in class:WebCore::SVGSMILElement
/external/webkit/Source/WebCore/wml/
H A DWMLTableElement.h47 void transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElement, unsigned startOffset) const;
H A DWMLTableElement.cpp138 void WMLTableElement::transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElement, unsigned startOffset) const argument
149 targetElement->appendChild(clonedNode.release(), ec);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DStylesheetRoot.java911 * @param targetElement Element to check
918 XPathContext support, int targetElement, DTM dtm) throws TransformerException
923 targetElement, null, false, dtm);
933 * @param targetElement Element to check
940 XPathContext support, int targetElement) throws TransformerException
944 while(DTM.NULL != targetElement)
946 DTM dtm = support.getDTM(targetElement);
948 targetElement, null, false, dtm);
952 int parent = dtm.getParent(targetElement);
954 targetElement
917 getWhiteSpaceInfo( XPathContext support, int targetElement, DTM dtm) argument
939 shouldStripWhiteSpace( XPathContext support, int targetElement) argument
[all...]
H A DElemTemplateElement.java1527 * @param targetElement Element to check
1535 org.w3c.dom.Element targetElement) throws TransformerException
1538 return (null != sroot) ? sroot.shouldStripWhiteSpace(support, targetElement) :false;
1533 shouldStripWhiteSpace( org.apache.xpath.XPathContext support, org.w3c.dom.Element targetElement) argument
/external/webkit/Source/WebCore/inspector/front-end/
H A DMetricsSidebarPane.js211 startEditing: function(targetElement, box, styleProperty, computedStyle)
213 if (WebInspector.isBeingEdited(targetElement))
218 WebInspector.startEditing(targetElement, {
/external/webkit/Source/WebCore/html/
H A DHTMLFormElement.cpp202 Element* targetElement = static_cast<Element*>(targetNode);
203 if (!targetElement->isFormControlElement())
205 return static_cast<HTMLFormControlElement*>(targetElement);
/external/webkit/Source/WebCore/html/parser/
H A DHTMLElementStack.cpp460 bool HTMLElementStack::inScope(Element* targetElement) const
464 if (node == targetElement)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 238 milliseconds