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

1 2

  /external/webkit/Source/WebCore/svg/
SVGAnimateMotionElement.cpp 58 SVGElement* targetElement = this->targetElement();
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->hasTagName(switchTag
    [all...]
SVGAnimateTransformElement.cpp 64 SVGElement* targetElement = this->targetElement();
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();
117 if (!targetElement || determineAnimatedAttributeType(targetElement) == AnimatedUnknown
    [all...]
SVGAnimationElement.idl 32 readonly attribute SVGElement targetElement;
SVGAnimateElement.cpp 91 static inline void adjustForCurrentColor(SVGElement* targetElement, Color& color)
93 ASSERT(targetElement);
95 if (RenderObject* targetRenderer = targetElement->renderer())
101 static inline void adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value)
105 ASSERT(targetElement);
107 Element* parent = targetElement->parentElement();
118 SVGElement* targetElement = this->targetElement();
119 if (!targetElement)
122 return determineAnimatedAttributeType(targetElement) != AnimatedUnknown
    [all...]
SVGDocumentExtensions.cpp 140 void SVGDocumentExtensions::addAnimationElementToTarget(SVGSMILElement* animationElement, SVGElement* targetElement)
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)
157 ASSERT(targetElement);
160 HashMap<SVGElement*, HashSet<SVGSMILElement*>* >::iterator it = m_animatedElements.find(targetElement);
173 void SVGDocumentExtensions::removeAllAnimationElementsFromTarget(SVGElement* targetElement)
175 ASSERT(targetElement);
176 HashSet<SVGSMILElement*>* animationElementsForTarget = m_animatedElements.take(targetElement);
    [all...]
SVGAnimationElement.cpp 293 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName)
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->style()->setProperty(attributeName.localName(), value, "", ec)
    [all...]
SVGAElement.cpp 167 Element* targetElement = document()->getElementById(url.substring(1));
168 if (SVGSMILElement::isSMILElement(targetElement)) {
169 static_cast<SVGSMILElement*>(targetElement)->beginByLinkActivation();
SVGTests.cpp 95 bool SVGTests::handleAttributeChange(const SVGElement* targetElement, const QualifiedName& attrName)
99 if (!targetElement->inDocument())
101 SVGElement* svgElement = const_cast<SVGElement*>(targetElement);
SVGUseElement.cpp 462 Element* targetElement = document()->getElementById(id);
465 if (!targetElement) {
506 Element* targetElement = document()->getElementById(id);
507 if (!targetElement) {
525 if (targetElement && targetElement->isSVGElement())
526 target = static_cast<SVGElement*>(targetElement);
757 Element* targetElement = document()->getElementById(id);
759 if (targetElement && targetElement->isSVGElement()
    [all...]
SVGTextPathElement.cpp 160 Element* targetElement = ownerDocument()->getElementById(id);
161 if (!targetElement) {
  /external/apache-xml/src/main/java/org/apache/xpath/
WhitespaceStrippingElementMatcher.java 38 * @param targetElement Element to check
45 XPathContext support, Element targetElement) throws TransformerException;
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGTextPath.cpp 48 Element* targetElement = textPathElement->document()->getElementById(pathId);
49 if (!targetElement || !targetElement->hasTagName(SVGNames::pathTag))
52 SVGPathElement* pathElement = static_cast<SVGPathElement*>(targetElement);
  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.cpp 199 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();
240 if (!targetElement || !targetElement->hasID() || targetElement->idForStyleResolution() != m_nextSamplingTarget
    [all...]
SVGSMILElement.h 57 SVGElement* targetElement() const;
SVGSMILElement.cpp 430 return condition.m_baseID.isEmpty() ? targetElement() : document()->getElementById(condition.m_baseID);
498 SVGElement* SVGSMILElement::targetElement() const
    [all...]
  /external/webkit/Source/WebCore/wml/
WMLTableElement.h 47 void transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElement, unsigned startOffset) const;
WMLTableElement.cpp 138 void WMLTableElement::transferAllChildrenOfElementToTargetElement(WMLElement* sourceElement, WMLElement* targetElement, unsigned startOffset) const
149 targetElement->appendChild(clonedNode.release(), ec);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
StylesheetRoot.java 911 * @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 = parent
    [all...]
ElemTemplateElement.java     [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
MetricsSidebarPane.js 211 startEditing: function(targetElement, box, styleProperty, computedStyle)
213 if (WebInspector.isBeingEdited(targetElement))
218 WebInspector.startEditing(targetElement, {
  /external/webkit/Source/WebCore/html/
HTMLFormElement.cpp 202 Element* targetElement = static_cast<Element*>(targetNode);
203 if (!targetElement->isFormControlElement())
205 return static_cast<HTMLFormControlElement*>(targetElement);
  /external/webkit/Source/WebCore/html/parser/
HTMLElementStack.cpp 460 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/
ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.pde.core_3.6.1.v20100902_r361.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 1976 milliseconds

1 2