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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 60 SVGElement* targetElement = this->targetElement();
61 if (!targetElement)
70 SVGElement* targetElement = this->targetElement();
71 if (!targetElement || !isSVGAnimateElement(*resultElement))
93 m_animator->setContextElement(targetElement);
110 SVGElement* targetElement = this->targetElement();
111 if (!targetElement)
    [all...]
SVGAnimateMotionElement.cpp 58 SVGElement* targetElement = this->targetElement();
59 if (!targetElement)
63 if (!targetElement->isSVGGraphicsElement())
67 return (isSVGGElement(*targetElement)
68 || isSVGDefsElement(*targetElement)
69 || isSVGUseElement(*targetElement)
70 || isSVGImageElement(*targetElement)
71 || isSVGSwitchElement(*targetElement)
72 || isSVGPathElement(*targetElement)
    [all...]
SVGAnimateTransformElement.cpp 43 SVGElement* targetElement = this->targetElement();
44 if (!targetElement)
SVGAnimationElement.idl 30 readonly attribute SVGElement targetElement;
SVGDiscardElement.h 47 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE { }
SVGAnimatedTypeAnimator.h 41 static PassOwnPtrWillBeRawPtr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement* targetElement)
43 return adoptPtrWillBeNoop(new SVGAnimatedTypeAnimator(animationElement, targetElement));
SVGAnimatedColor.cpp 42 static inline Color fallbackColorForCurrentColor(SVGElement* targetElement)
44 ASSERT(targetElement);
45 if (RenderObject* targetRenderer = targetElement->renderer())
SVGAnimationElement.cpp 319 checkInvalidCSSAttributeType(targetElement());
351 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName)
353 ASSERT(targetElement);
358 SVGAnimationElement::ShouldApplyAnimation SVGAnimationElement::shouldApplyAnimation(SVGElement* targetElement, const QualifiedName& attributeName)
360 if (!hasValidAttributeType() || !targetElement || attributeName == anyQName())
364 if (isTargetAttributeCSSProperty(targetElement, attributeName))
642 void SVGAnimationElement::adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value)
646 ASSERT(targetElement);
648 Element* parent = targetElement->parentElement();
656 static bool inheritsFromProperty(SVGElement* targetElement, const QualifiedName& attributeName, const String& value
    [all...]
SVGAElement.cpp 148 Element* targetElement = treeScope().getElementById(AtomicString(url.substring(1)));
149 if (targetElement && isSVGSMILElement(*targetElement)) {
150 toSVGSMILElement(targetElement)->beginByLinkActivation();
SVGAnimateMotionElement.h 46 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE;
SVGAnimateElement.h 49 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE FINAL;
SVGAnimationElement.h 90 ShouldApplyAnimation shouldApplyAnimation(SVGElement* targetElement, const QualifiedName& attributeName);
190 void adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String&);
SVGUseElement.cpp 510 Element* targetElement = SVGURIReference::targetElementFromIRIString(use->hrefString(), *referencedScope());
512 if (targetElement && targetElement->isSVGElement())
513 newTarget = toSVGElement(targetElement);
SVGElement.h 177 InstanceUpdateBlocker(SVGElement* 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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGTextPath.cpp 54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPathElement->href()->currentValue()->value(), textPathElement->treeScope());
55 if (!isSVGPathElement(targetElement))
58 SVGPathElement& pathElement = toSVGPathElement(*targetElement);
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.cpp 407 ASSERT(animation->targetElement());
453 RefPtrWillBeRawPtr<SVGElement> targetElement = animDiscard->targetElement();
454 if (targetElement && targetElement->inDocument()) {
455 targetElement->remove(IGNORE_EXCEPTION);
456 ASSERT(!targetElement->inDocument());
SVGSMILElement.h 62 SVGElement* targetElement() const { return m_targetElement; }
110 virtual void clearAnimatedType(SVGElement* targetElement) = 0;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SoftContextMenu.js 50 var targetElement = event.target;
51 while (targetElement && window !== targetElement.ownerDocument.defaultView) {
52 var frameElement = targetElement.ownerDocument.defaultView.frameElement;
55 targetElement = frameElement;
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
MetricsSidebarPane.js 346 startEditing: function(targetElement, box, styleProperty, computedStyle)
348 if (WebInspector.isBeingEdited(targetElement))
354 targetElement.addEventListener("keydown", boundKeyDown, false);
359 WebInspector.InplaceEditor.startEditing(targetElement, config);
361 window.getSelection().setBaseAndExtent(targetElement, 0, targetElement, 1);
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
api.js 387 * @param {Element} targetElement The element that should be clicked.
390 cvox.Api.click = function(targetElement, shiftKey) {
391 if (!cvox.Api.isChromeVoxActive() || !targetElement) {
396 cvox.DomUtil.clickElem(targetElement, shiftKey, true);
400 'args': [cvox.ApiUtils.makeNodeReference(targetElement), shiftKey]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SelectorQuery.cpp 129 bool SelectorDataList::matches(Element& targetElement) const
133 if (selectorMatches(*m_selectors[i], targetElement, targetElement))
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLElementStack.cpp 477 bool HTMLElementStack::inScope(Element* targetElement) const
481 if (item->node() == targetElement)

Completed in 452 milliseconds

1 2