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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/dom/
LiveNodeListBase.cpp 32 void LiveNodeListBase::invalidateCacheForAttribute(const QualifiedName* attrName) const
35 toLiveNodeList(this)->invalidateCacheForAttribute(attrName);
37 toHTMLCollection(this)->invalidateCacheForAttribute(attrName);
NodeListsNodeData.cpp 36 void NodeListsNodeData::invalidateCaches(const QualifiedName* attrName)
40 it->value->invalidateCacheForAttribute(attrName);
42 if (attrName)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGSymbolElement.cpp 38 bool SVGSymbolElement::isSupportedAttribute(const QualifiedName& attrName)
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
63 void SVGSymbolElement::svgAttributeChanged(const QualifiedName& attrName)
65 if (!isSupportedAttribute(attrName)) {
66 SVGElement::svgAttributeChanged(attrName);
SVGFESpecularLightingElement.cpp 50 bool SVGFESpecularLightingElement::isSupportedAttribute(const QualifiedName& attrName)
60 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
88 bool SVGFESpecularLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
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 == SVGNames::xAttr || attrName == SVGNames::yAttr || attrName == SVGNames::zAttr
    [all...]
SVGEllipseElement.cpp 46 bool SVGEllipseElement::isSupportedAttribute(const QualifiedName& attrName)
55 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
63 void SVGEllipseElement::svgAttributeChanged(const QualifiedName& attrName)
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;
SVGLineElement.cpp 45 bool SVGLineElement::isSupportedAttribute(const QualifiedName& attrName)
54 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
62 void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName)
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;
SVGFEMergeNodeElement.cpp 43 void SVGFEMergeNodeElement::svgAttributeChanged(const QualifiedName& attrName)
45 if (attrName == SVGNames::inAttr) {
51 SVGElement::svgAttributeChanged(attrName);
SVGPolyElement.cpp 43 void SVGPolyElement::svgAttributeChanged(const QualifiedName& attrName)
45 if (attrName != SVGNames::pointsAttr) {
46 SVGGeometryElement::svgAttributeChanged(attrName);
SVGFEDiffuseLightingElement.cpp 47 bool SVGFEDiffuseLightingElement::isSupportedAttribute(const QualifiedName& attrName)
57 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
83 bool SVGFEDiffuseLightingElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
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 == SVGNames::yAttr || attrName == SVGNames::zAttr
    [all...]
SVGFETurbulenceElement.cpp 67 bool SVGFETurbulenceElement::isSupportedAttribute(const QualifiedName& attrName)
77 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
85 bool SVGFETurbulenceElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
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)
108 if (!isSupportedAttribute(attrName)) {
    [all...]
SVGRectElement.cpp 50 bool SVGRectElement::isSupportedAttribute(const QualifiedName& attrName)
61 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
69 void SVGRectElement::svgAttributeChanged(const QualifiedName& attrName)
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 == SVGNames::rxAtt
    [all...]
SVGCircleElement.cpp 44 bool SVGCircleElement::isSupportedAttribute(const QualifiedName& attrName)
52 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
60 void SVGCircleElement::svgAttributeChanged(const QualifiedName& attrName)
62 if (!isSupportedAttribute(attrName)) {
63 SVGGeometryElement::svgAttributeChanged(attrName);
69 bool isLengthAttribute = attrName == SVGNames::cxAttr
70 || attrName == SVGNames::cyAttr
71 || attrName == SVGNames::rAttr;
SVGFEOffsetElement.cpp 44 bool SVGFEOffsetElement::isSupportedAttribute(const QualifiedName& attrName)
52 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
76 void SVGFEOffsetElement::svgAttributeChanged(const QualifiedName& attrName)
78 if (!isSupportedAttribute(attrName)) {
79 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
85 if (attrName == SVGNames::inAttr || attrName == SVGNames::dxAttr || attrName == SVGNames::dyAttr) {
SVGFETileElement.cpp 40 bool SVGFETileElement::isSupportedAttribute(const QualifiedName& attrName)
45 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
65 void SVGFETileElement::svgAttributeChanged(const QualifiedName& attrName)
67 if (!isSupportedAttribute(attrName)) {
68 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
74 if (attrName == SVGNames::inAttr) {
SVGStopElement.cpp 39 bool SVGStopElement::isSupportedAttribute(const QualifiedName& attrName)
44 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
64 void SVGStopElement::svgAttributeChanged(const QualifiedName& attrName)
66 if (!isSupportedAttribute(attrName)) {
67 SVGElement::svgAttributeChanged(attrName);
76 if (attrName == SVGNames::offsetAttr) {
SVGFEDisplacementMapElement.cpp 59 bool SVGFEDisplacementMapElement::isSupportedAttribute(const QualifiedName& attrName)
69 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
97 bool SVGFEDisplacementMapElement::setFilterEffectAttribute(FilterEffect* effect, const QualifiedName& attrName)
100 if (attrName == SVGNames::xChannelSelectorAttr)
102 if (attrName == SVGNames::yChannelSelectorAttr)
104 if (attrName == SVGNames::scaleAttr)
111 void SVGFEDisplacementMapElement::svgAttributeChanged(const QualifiedName& attrName)
113 if (!isSupportedAttribute(attrName)) {
114 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
120 if (attrName == SVGNames::xChannelSelectorAttr || attrName == SVGNames::yChannelSelectorAttr || attrName == SVG (…)
    [all...]
SVGTextPositioningElement.cpp 48 bool SVGTextPositioningElement::isSupportedAttribute(const QualifiedName& attrName)
58 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
86 void SVGTextPositioningElement::svgAttributeChanged(const QualifiedName& attrName)
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 == SVGNames::rotateAttr)
    [all...]
SVGFEGaussianBlurElement.cpp 50 bool SVGFEGaussianBlurElement::isSupportedAttribute(const QualifiedName& attrName)
57 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
65 void SVGFEGaussianBlurElement::svgAttributeChanged(const QualifiedName& attrName)
67 if (!isSupportedAttribute(attrName)) {
68 SVGFilterPrimitiveStandardAttributes::svgAttributeChanged(attrName);
74 if (attrName == SVGNames::inAttr || attrName == SVGNames::stdDeviationAttr) {
SVGFEDropShadowElement.cpp 54 bool SVGFEDropShadowElement::isSupportedAttribute(const QualifiedName& attrName)
63 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
71 void SVGFEDropShadowElement::svgAttributeChanged(const QualifiedName& attrName)
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) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebMutationEvent.cpp 53 WebString WebMutationEvent::attrName() const
55 return WebString(constUnwrap<MutationEvent>()->attrName());
  /libcore/luni/src/test/java/tests/org/w3c/dom/
NamedNodeMapGetNamedItemNS.java 106 String attrName;
114 attrName = attribute.getNodeName();
115 assertEquals("namednodemapgetnameditemns02", "emp:domestic", attrName);
125 String attrName;
135 attrName = attribute.getNodeName();
136 assertEquals("namednodemapgetnameditemns03", "L2:att", attrName);
145 String attrName;
154 attrName = attribute.getNodeName();
155 assertEquals("namednodemapgetnameditemns04", "street", attrName);
181 // String attrName;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
MutationEvent.h 50 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; }
69 MutationEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtrWillBeRawPtr<Node> relatedNode, const String& prevValue, const String& newValue, const String& attrName, unsigned short attrChange);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_namednodemapreturnattrnode.java 70 String attrName;
77 attrName = streetAttr.getNodeName();
78 assertEqualsAutoCase("attribute", "nodeName", "class", attrName);
79 attrName = ((Attr) /*Node */streetAttr).getName();
80 assertEqualsAutoCase("attribute", "name", "class", attrName);
namednodemapreturnattrnode.java 73 String attrName;
80 attrName = streetAttr.getNodeName();
81 assertEquals("nodeName", "street", attrName);
82 attrName = ((Attr) /*Node */streetAttr).getName();
83 assertEquals("attrName", "street", attrName);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapgetnameditemns06.java 79 String attrName;
88 attrName = attribute.getNodeName();
89 assertEquals("namednodemapgetnameditemnsMap106", "street", attrName);
91 attrName = attribute.getNodeName();
92 assertEquals("namednodemapgetnameditemnsMap206", "street", attrName);

Completed in 1974 milliseconds

1 2 3 4 5 6 7 8 91011>>