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

1234567

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DLiveNodeListBase.cpp32 void LiveNodeListBase::invalidateCacheForAttribute(const QualifiedName* attrName) const
35 toLiveNodeList(this)->invalidateCacheForAttribute(attrName);
37 toHTMLCollection(this)->invalidateCacheForAttribute(attrName);
H A DNodeListsNodeData.cpp36 void NodeListsNodeData::invalidateCaches(const QualifiedName* attrName) argument
40 it->value->invalidateCacheForAttribute(attrName);
42 if (attrName)
H A DLiveNodeListBase.h96 ALWAYS_INLINE bool LiveNodeListBase::shouldInvalidateTypeOnAttributeChange(NodeListInvalidationType type, const QualifiedName& attrName) argument
100 return attrName == HTMLNames::classAttr;
102 return attrName == HTMLNames::nameAttr;
104 return attrName == HTMLNames::idAttr || attrName == HTMLNames::nameAttr;
106 return attrName == HTMLNames::forAttr;
108 return attrName == HTMLNames::nameAttr || attrName == HTMLNames::idAttr || attrName == HTMLNames::forAttr
109 || attrName
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGSymbolElement.cpp38 bool SVGSymbolElement::isSupportedAttribute(const QualifiedName& attrName) argument
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
63 void SVGSymbolElement::svgAttributeChanged(const QualifiedName& attrName) argument
65 if (!isSupportedAttribute(attrName)) {
66 SVGElement::svgAttributeChanged(attrName);
H A DSVGFESpecularLightingElement.cpp50 bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& attrName) argument
60 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
88 bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
92 if (attrName == SVGNames::lighting_colorAttr) {
98 if (attrName == SVGNames::surfaceScaleAttr)
100 if (attrName == SVGNames::specularConstantAttr)
102 if (attrName == SVGNames::specularExponentAttr)
111 if (attrName == SVGNames::azimuthAttr)
113 if (attrName == SVGNames::elevationAttr)
115 if (attrName
128 svgAttributeChanged(const QualifiedName& attrName) argument
153 lightElementAttributeChanged(const SVGFELightElement* lightElement, const QualifiedName& attrName) argument
[all...]
H A DSVGEllipseElement.cpp46 bool SVGEllipseElement::isSupportedAttribute(const QualifiedName& attrName) argument
55 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
63 void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName) argument
65 if (!isSupportedAttribute(attrName)) {
66 SVGGeometryElement::svgAttributeChanged(attrName);
72 bool isLengthAttribute = attrName == SVGNames::cxAttr
73 || attrName == SVGNames::cyAttr
74 || attrName == SVGNames::rxAttr
75 || attrName == SVGNames::ryAttr;
H A DSVGLineElement.cpp45 bool SVGLineElement::isSupportedAttribute(const QualifiedName& attrName) argument
54 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
62 void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName) argument
64 if (!isSupportedAttribute(attrName)) {
65 SVGGeometryElement::svgAttributeChanged(attrName);
71 bool isLengthAttribute = attrName == SVGNames::x1Attr
72 || attrName == SVGNames::y1Attr
73 || attrName == SVGNames::x2Attr
74 || attrName == SVGNames::y2Attr;
H A DSVGFEDiffuseLightingElement.cpp47 bool SVGFEDiffuseLightingElement::isSupportedAttribute(const QualifiedName& attrName) argument
57 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
83 bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
87 if (attrName == SVGNames::lighting_colorAttr) {
93 if (attrName == SVGNames::surfaceScaleAttr)
95 if (attrName == SVGNames::diffuseConstantAttr)
104 if (attrName == SVGNames::azimuthAttr)
106 if (attrName == SVGNames::elevationAttr)
108 if (attrName == SVGNames::xAttr || attrName
121 svgAttributeChanged(const QualifiedName& attrName) argument
146 lightElementAttributeChanged(const SVGFELightElement* lightElement, const QualifiedName& attrName) argument
[all...]
H A DSVGFEMergeNodeElement.cpp43 void SVGFEMergeNodeElement::svgAttributeChanged(const QualifiedName& attrName) argument
45 if (attrName == SVGNames::inAttr) {
51 SVGElement::svgAttributeChanged(attrName);
H A DSVGPolyElement.cpp43 void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName) argument
45 if (attrName != SVGNames::pointsAttr) {
46 SVGGeometryElement::svgAttributeChanged(attrName);
H A DSVGFETurbulenceElement.cpp67 bool SVGFETurbulenceElement::isSupportedAttribute(const QualifiedName& attrName) argument
77 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
85 bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
88 if (attrName == SVGNames::typeAttr)
90 if (attrName == SVGNames::stitchTilesAttr)
92 if (attrName == SVGNames::baseFrequencyAttr) {
97 if (attrName == SVGNames::seedAttr)
99 if (attrName == SVGNames::numOctavesAttr)
106 void SVGFETurbulenceElement::svgAttributeChanged(const QualifiedName& attrName) argument
108 if (!isSupportedAttribute(attrName)) {
[all...]
H A DSVGRectElement.cpp50 bool SVGRectElement::isSupportedAttribute(const QualifiedName& attrName) argument
61 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
69 void SVGRectElement::svgAttributeChanged(const QualifiedName& attrName) argument
71 if (!isSupportedAttribute(attrName)) {
72 SVGGeometryElement::svgAttributeChanged(attrName);
78 bool isLengthAttribute = attrName == SVGNames::xAttr
79 || attrName == SVGNames::yAttr
80 || attrName == SVGNames::widthAttr
81 || attrName == SVGNames::heightAttr
82 || attrName
[all...]
H A DSVGCircleElement.cpp44 bool SVGCircleElement::isSupportedAttribute(const QualifiedName& attrName) argument
52 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
60 void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName) argument
62 if (!isSupportedAttribute(attrName)) {
63 SVGGeometryElement::svgAttributeChanged(attrName);
69 bool isLengthAttribute = attrName == SVGNames::cxAttr
70 || attrName == SVGNames::cyAttr
71 || attrName == SVGNames::rAttr;
H A DSVGFEOffsetElement.cpp44 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName) argument
52 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
76 void SVGFEOffsetElement::svgAttributeChanged(const QualifiedName& attrName) argument
78 if (!isSupportedAttribute(attrName)) {
79 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
85 if (attrName == SVGNames::inAttr || attrName == SVGNames::dxAttr || attrName == SVGNames::dyAttr) {
H A DSVGFETileElement.cpp40 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName) argument
45 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
65 void SVGFETileElement::svgAttributeChanged(const QualifiedName& attrName) argument
67 if (!isSupportedAttribute(attrName)) {
68 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
74 if (attrName == SVGNames::inAttr) {
H A DSVGStopElement.cpp39 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName) argument
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
64 void SVGStopElement::svgAttributeChanged(const QualifiedName& attrName) argument
66 if (!isSupportedAttribute(attrName)) {
67 SVGElement::svgAttributeChanged(attrName);
76 if (attrName == SVGNames::offsetAttr) {
H A DSVGFEDisplacementMapElement.cpp59 bool SVGFEDisplacementMapElement::isSupportedAttribute(const QualifiedName& attrName) argument
69 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
97 bool SVGFEDisplacementMapElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
100 if (attrName == SVGNames::xChannelSelectorAttr)
102 if (attrName == SVGNames::yChannelSelectorAttr)
104 if (attrName == SVGNames::scaleAttr)
111 void SVGFEDisplacementMapElement::svgAttributeChanged(const QualifiedName& attrName) argument
113 if (!isSupportedAttribute(attrName)) {
114 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
120 if (attrName
[all...]
H A DSVGTextPositioningElement.cpp48 bool SVGTextPositioningElement::isSupportedAttribute(const QualifiedName& attrName) argument
58 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
86 void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrName) argument
88 if (!isSupportedAttribute(attrName)) {
89 SVGTextContentElement::svgAttributeChanged(attrName);
95 bool updateRelativeLengths = attrName == SVGNames::xAttr
96 || attrName == SVGNames::yAttr
97 || attrName == SVGNames::dxAttr
98 || attrName == SVGNames::dyAttr;
107 if (updateRelativeLengths || attrName
[all...]
H A DSVGFEGaussianBlurElement.cpp50 bool SVGFEGaussianBlurElement::isSupportedAttribute(const QualifiedName& attrName) argument
57 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
65 void SVGFEGaussianBlurElement::svgAttributeChanged(const QualifiedName& attrName) argument
67 if (!isSupportedAttribute(attrName)) {
68 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
74 if (attrName == SVGNames::inAttr || attrName == SVGNames::stdDeviationAttr) {
H A DSVGFEDropShadowElement.cpp54 bool SVGFEDropShadowElement::isSupportedAttribute(const QualifiedName& attrName) argument
63 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
71 void SVGFEDropShadowElement::svgAttributeChanged(const QualifiedName& attrName) argument
73 if (!isSupportedAttribute(attrName)) {
74 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
80 if (attrName == SVGNames::inAttr
81 || attrName == SVGNames::stdDeviationAttr
82 || attrName == SVGNames::dxAttr
83 || attrName == SVGNames::dyAttr) {
H A DSVGFECompositeElement.cpp66 bool SVGFECompositeElement::isSupportedAttribute(const QualifiedName& attrName) argument
78 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
110 bool SVGFECompositeElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
113 if (attrName == SVGNames::operatorAttr)
115 if (attrName == SVGNames::k1Attr)
117 if (attrName == SVGNames::k2Attr)
119 if (attrName == SVGNames::k3Attr)
121 if (attrName == SVGNames::k4Attr)
129 void SVGFECompositeElement::svgAttributeChanged(const QualifiedName& attrName) argument
131 if (!isSupportedAttribute(attrName)) {
[all...]
H A DSVGClipPathElement.cpp44 void SVGClipPathElement::svgAttributeChanged(const QualifiedName& attrName) argument
46 if (attrName != SVGNames::clipPathUnitsAttr) {
47 SVGGraphicsElement::svgAttributeChanged(attrName);
H A DSVGFEColorMatrixElement.cpp56 bool SVGFEColorMatrixElement::isSupportedAttribute(const QualifiedName& attrName) argument
64 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
72 bool SVGFEColorMatrixElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName) argument
75 if (attrName == SVGNames::typeAttr)
77 if (attrName == SVGNames::valuesAttr)
84 void SVGFEColorMatrixElement::svgAttributeChanged(const QualifiedName& attrName) argument
86 if (!isSupportedAttribute(attrName)) {
87 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
93 if (attrName == SVGNames::typeAttr || attrName
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebMutationEvent.cpp53 WebString WebMutationEvent::attrName() const function in class:blink::WebMutationEvent
55 return WebString(constUnwrap<MutationEvent>()->attrName());
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DMutationEvent.h50 const String& prevValue = String(), const String& newValue = String(), const String& attrName = String(), unsigned short attrChange = 0)
52 return adoptRefWillBeNoop(new MutationEvent(type, canBubble, false, relatedNode, prevValue, newValue, attrName, attrChange));
55 void initMutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
60 String attrName() const { return m_attrName; } function in class:blink::FINAL
69 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);

Completed in 442 milliseconds

1234567