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

12

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateElement.cpp58 SVGElement* targetElement = this->targetElement(); local
59 if (!targetElement)
68 SVGElement* targetElement = this->targetElement(); local
69 if (!targetElement || !isSVGAnimateElement(*resultElement))
91 m_animator->setContextElement(targetElement);
108 SVGElement* targetElement = this->targetElement(); local
109 if (!targetElement)
119 SVGElement* targetElement = this->targetElement(); local
139 findElementInstances(SVGElement* targetElement) argument
162 SVGElement* targetElement = this->targetElement(); local
197 applyCSSPropertyToTarget(SVGElement* targetElement, CSSPropertyID id, const String& value) argument
210 removeCSSPropertyFromTarget(SVGElement* targetElement, CSSPropertyID id) argument
219 applyCSSPropertyToTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName, const String& valueAsString) argument
239 removeCSSPropertyFromTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName) argument
259 notifyTargetAboutAnimValChange(SVGElement* targetElement, const QualifiedName& attributeName) argument
268 notifyTargetAndInstancesAboutAnimValChange(SVGElement* targetElement, const QualifiedName& attributeName) argument
285 clearAnimatedType(SVGElement* targetElement) argument
362 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGAnimateMotionElement.cpp58 SVGElement* targetElement = this->targetElement(); local
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)
179 clearAnimatedType(SVGElement* targetElement) argument
225 SVGElement* targetElement = this->targetElement(); local
281 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGAnimateTransformElement.cpp42 SVGElement* targetElement = this->targetElement(); local
43 if (!targetElement)
H A DSVGAnimationElement.idl30 readonly attribute SVGElement targetElement;
H A DSVGAElement.cpp123 Element* targetElement = treeScope().getElementById(AtomicString(url.substring(1))); local
124 if (targetElement && isSVGSMILElement(*targetElement)) {
125 toSVGSMILElement(targetElement)->beginByLinkActivation();
H A DSVGDiscardElement.h48 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE { }
H A DSVGAnimatedColor.cpp42 static inline Color fallbackColorForCurrentColor(SVGElement* targetElement) argument
44 ASSERT(targetElement);
45 if (RenderObject* targetRenderer = targetElement->renderer())
H A DSVGAnimationElement.cpp309 checkInvalidCSSAttributeType(targetElement());
341 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName) argument
343 ASSERT(targetElement);
348 SVGAnimationElement::ShouldApplyAnimation SVGAnimationElement::shouldApplyAnimation(SVGElement* targetElement, const QualifiedName& attributeName) argument
350 if (!hasValidAttributeType() || !targetElement || attributeName == anyQName())
354 if (isTargetAttributeCSSProperty(targetElement, attributeName))
638 void SVGAnimationElement::adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value) argument
642 ASSERT(targetElement);
644 Element* parent = targetElement->parentElement();
652 static bool inheritsFromProperty(SVGElement* targetElement, cons argument
664 SVGElement* targetElement = this->targetElement(); local
[all...]
H A DSVGAnimatedTypeAnimator.h41 static PassOwnPtrWillBeRawPtr<SVGAnimatedTypeAnimator> create(SVGAnimationElement* animationElement, SVGElement* targetElement) argument
43 return adoptPtrWillBeNoop(new SVGAnimatedTypeAnimator(animationElement, targetElement));
H A DSVGAnimateMotionElement.h46 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE;
H A DSVGAnimationElement.h89 ShouldApplyAnimation shouldApplyAnimation(SVGElement* targetElement, const QualifiedName& attributeName);
191 void adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String&);
H A DSVGAnimateElement.h50 virtual void clearAnimatedType(SVGElement* targetElement) OVERRIDE FINAL;
H A DSVGElement.cpp984 SVGElement::InstanceUpdateBlocker::InstanceUpdateBlocker(SVGElement* targetElement) argument
985 : m_targetElement(targetElement)
1111 void SVGElement::addReferenceTo(SVGElement* targetElement) argument
1113 ASSERT(targetElement);
1115 ensureSVGRareData()->outgoingReferences().add(targetElement);
1116 targetElement->ensureSVGRareData()->incomingReferences().add(this);
1161 SVGElement* targetElement = *it; local
1162 ASSERT(targetElement->hasSVGRareData());
1163 targetElement->ensureSVGRareData()->incomingReferences().remove(this);
H A DSVGUseElement.cpp494 Element* targetElement = SVGURIReference::targetElementFromIRIString(use->hrefString(), *referencedScope()); local
496 if (targetElement && targetElement->isSVGElement())
497 newTarget = toSVGElement(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/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGTextPath.cpp54 Element* targetElement = SVGURIReference::targetElementFromIRIString(textPathElement->href()->currentValue()->value(), textPathElement->treeScope()); local
55 if (!isSVGPathElement(targetElement))
58 SVGPathElement& pathElement = toSVGPathElement(*targetElement);
/external/chromium-trace/trace-viewer/src/ui/
H A Dmouse_tracker.js21 * @param {HTMLElement} targetElement will recv events 'mouse-tracker-start',
24 function MouseTracker(targetElement) {
25 this.targetElement_ = targetElement;
H A Dcamera.js17 function Camera(targetElement) {
18 this.targetElement_ = targetElement;
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dapi.js387 * @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/svg/animation/
H A DSMILTimeContainer.cpp407 ASSERT(animation->targetElement());
453 RefPtrWillBeRawPtr<SVGElement> targetElement = animDiscard->targetElement(); local
454 if (targetElement && targetElement->inDocument()) {
455 targetElement->remove(IGNORE_EXCEPTION);
456 ASSERT(!targetElement->inDocument());
H A DSVGSMILElement.h63 SVGElement* targetElement() const { return m_targetElement; } function in class:blink::SVGSMILElement
111 virtual void clearAnimatedType(SVGElement* targetElement) = 0;
/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...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
H A DMetricsSidebarPane.js346 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/common/
H A Daria_util.js227 * @param {Element} targetElement The node to check.
230 cvox.AriaUtil.isLeafElement = function(targetElement) {
231 var role = targetElement.getAttribute('role');
232 var hasArialLabel = targetElement.hasAttribute('aria-label') &&
233 (targetElement.getAttribute('aria-label').length > 0);
/external/chromium_org/ui/file_manager/gallery/js/
H A Dslide_mode.js1322 * @param {DOMElement} targetElement Event source.
1326 function TouchHandler(targetElement, slideMode) {
1332 this.targetElement_ = targetElement;
1349 * Whether it is in a touch operation that is started from targetElement or
1393 targetElement.addEventListener('touchstart', this.onTouchStart_.bind(this));
1395 targetElement.ownerDocument.addEventListener('touchmove', onTouchEventBound);
1396 targetElement.ownerDocument.addEventListener('touchend', onTouchEventBound);
1398 targetElement.addEventListener('mousewheel', this.onMouseWheel_.bind(this));

Completed in 486 milliseconds

12