Searched refs:attributeName (Results 1 - 25 of 61) sorted by relevance

123

/external/proguard/src/proguard/classfile/editor/
H A DNamedAttributeDeleter.java36 private final String attributeName; field in class:NamedAttributeDeleter
39 public NamedAttributeDeleter(String attributeName) argument
41 this.attributeName = attributeName;
52 new AttributesEditor(programClass, false).deleteAttribute(attributeName);
H A DAttributesEditor.java144 public void deleteAttribute(String attributeName) argument
152 attributeName);
159 attributeName);
166 attributeName);
228 String attributeName)
233 attributeName);
257 String attributeName)
261 if (attributes[index].getAttributeName(targetClass).equals(attributeName))
226 deleteAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
255 findAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
/external/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedStaticPropertyTearOff.h54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
61 : SVGAnimatedProperty(contextElement, attributeName)
H A DSVGAnimatedTransformListPropertyTearOff.h49 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values) argument
52 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, values));
55 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values) argument
56 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, values)
H A DSVGAnimatedPathSegListPropertyTearOff.h57 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values) argument
60 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, values));
63 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values) argument
64 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, values)
H A DSVGAnimatedPropertyTearOff.h49 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
52 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, property));
55 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property) argument
56 : SVGAnimatedProperty(contextElement, attributeName)
H A DSVGAnimatedProperty.h37 const QualifiedName& attributeName() const { return m_attributeName; } function in class:WebCore::SVGAnimatedProperty
65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property) argument
70 wrapper = TearOffType::create(element, attributeName, property);
85 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName) argument
87 , m_attributeName(attributeName)
H A DSVGAnimatedPropertyDescription.h52 SVGAnimatedPropertyDescription(SVGElement* element, const AtomicString& attributeName) argument
54 , m_attributeName(attributeName.impl())
H A DSVGAnimatedListPropertyTearOff.h88 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values) argument
91 return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, values));
95 SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values) argument
96 : SVGAnimatedProperty(contextElement, attributeName)
/external/webkit/Source/WebCore/svg/
H A DSVGStringList.h35 SVGStringList(const QualifiedName& attributeName) argument
36 : m_attributeName(attributeName)
H A DSVGAnimateElement.cpp101 static inline void adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value) argument
113 value = computedStyle(svgParent)->getPropertyValue(cssPropertyID(attributeName.localName()));
129 AnimatedAttributeType type = targetElement->animatedPropertyTypeForAttribute(attributeName());
199 adjustForInheritance(targetElement, attributeName(), fromNumberString);
205 adjustForInheritance(targetElement, attributeName(), toNumberString);
234 adjustForInheritance(targetElement, attributeName(), fromColorString);
241 adjustForInheritance(targetElement, attributeName(), toColorString);
311 adjustForInheritance(targetElement, attributeName(), m_fromString);
313 adjustForInheritance(targetElement, attributeName(), m_toString);
323 static bool inheritsFromProperty(SVGElement* targetElement, const QualifiedName& attributeName, cons argument
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLPreloadScanner.cpp69 AtomicString attributeName(iter->m_name.data(), iter->m_name.size());
72 if (attributeName == charsetAttr)
76 if (attributeName == srcAttr)
79 if (attributeName == hrefAttr)
81 else if (attributeName == relAttr)
83 else if (attributeName == mediaAttr)
86 if (attributeName == srcAttr)
88 else if (attributeName == typeAttr)
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_elementretrieveallattributes.js95 var attributeName;
117 attributeName = attribute.nodeName;
119 actual[actual.length] = attributeName;
H A Dhc_nodecloneattributescopied.js97 var attributeName;
122 attributeName = attributeNode.nodeName;
124 result[result.length] = attributeName;
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_elementretrieveallattributes.js95 var attributeName;
117 attributeName = attribute.nodeName;
119 actual[actual.length] = attributeName;
H A Dhc_nodecloneattributescopied.js97 var attributeName;
122 attributeName = attributeNode.nodeName;
124 result[result.length] = attributeName;
/external/webkit/Source/WebCore/svg/animation/
H A DSMILTimeContainer.cpp200 QualifiedName attributeName = key.second; local
202 ASSERT(attributeName != anyQName());
204 if (SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName))
205 baseValue = computedStyle(targetElement)->getPropertyValue(cssPropertyID(attributeName.localName()));
207 baseValue = targetElement->getAttribute(attributeName);
268 QualifiedName attributeName = animation->attributeName(); local
269 if (attributeName == anyQName()) {
271 attributeName = SVGNames::animateMotionTag;
277 ElementAttributePair key(targetElement, attributeName);
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebPageSerializer.cpp63 const QualifiedName* attributeName = 0; local
65 attributeName = &HTMLNames::srcAttr;
69 attributeName = &HTMLNames::srcAttr;
74 attributeName = &HTMLNames::backgroundAttr;
79 attributeName = &HTMLNames::citeAttr;
85 attributeName = &HTMLNames::hrefAttr;
88 attributeName = &HTMLNames::dataAttr;
90 attributeName = &HTMLNames::srcAttr;
92 if (!attributeName)
95 String value = element->getAttribute(*attributeName);
[all...]
/external/chromium-trace/trace-viewer/src/
H A Dbase.js269 var attributeName = getAttributeName(name);
271 return this.getAttribute(attributeName);
274 var attributeName = getAttributeName(name);
276 return this.hasAttribute(attributeName);
307 var attributeName = getAttributeName(name);
309 var oldValue = this[attributeName];
312 this.removeAttribute(attributeName);
314 this.setAttribute(attributeName, value);
322 var attributeName = getAttributeName(name);
324 var oldValue = this[attributeName];
[all...]
/external/webkit/Source/WebCore/accessibility/mac/
H A DAccessibilityObjectWrapper.mm1534 - (id)accessibilityAttributeValue:(NSString*)attributeName
1539 if ([attributeName isEqualToString: NSAccessibilityRoleAttribute])
1542 if ([attributeName isEqualToString: NSAccessibilitySubroleAttribute])
1545 if ([attributeName isEqualToString: NSAccessibilityRoleDescriptionAttribute])
1548 if ([attributeName isEqualToString: NSAccessibilityParentAttribute]) {
1577 if ([attributeName isEqualToString: NSAccessibilityChildrenAttribute]) {
1599 if ([attributeName isEqualToString: NSAccessibilitySelectedChildrenAttribute]) {
1608 if ([attributeName isEqualToString: NSAccessibilityVisibleChildrenAttribute]) {
1622 if ([attributeName isEqualToString:@"AXLinkUIElements"]) {
1627 if ([attributeName isEqualToStrin
[all...]
/external/webkit/Source/WebCore/bindings/scripts/
H A DCodeGenerator.pm445 my ($object, $interfaceName, $attributeName) = @_;
446 return "SVGNames" if $interfaceName =~ /^SVG/ && !$svgAttributesInHTMLHash{$attributeName};
470 my $attributeName = $attribute->signature->name;
474 $attributeName = "_operator" if $attributeName eq "operator";
478 $attributeName = "svgTarget" if $attributeName eq "target" and $attributeType eq "SVGAnimatedString";
482 $attributeName .= "Animated" if $generator->IsSVGAnimatedType($attributeType);
484 return $attributeName;
H A DCodeGeneratorObjC.pm766 my $attributeName = $attribute->signature->name;
768 if ($attributeName eq "id" or $attributeName eq "hash" or $attributeName eq "description") {
770 $attributeName .= "Name";
771 } elsif ($attributeName eq "frame") {
773 $attributeName .= "Borders";
781 $attributeName =~ s/operator/_operator/ if ($attributeName =~ /operator/);
782 $property .= " " . $attributeType . ($attributeType =~ /\*$/ ? "" : " ") . $attributeName;
[all...]
/external/webkit/Source/WebCore/dom/
H A DDatasetDOMStringMap.cpp73 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName) argument
75 if (!attributeName.startsWith("data-"))
79 const UChar* attribute = attributeName.characters();
81 unsigned attributeLength = attributeName.length();
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DShader.cpp446 int VertexShader::getSemanticIndex(const std::string &attributeName) argument
448 if (!attributeName.empty())
453 if (attribute->name == attributeName)
474 char attributeName[256]; local
476 int matches = sscanf(input, "static %255s _%255s", attributeType, attributeName);
483 mAttributes.push_back(Attribute(parseType(attributeType), attributeName));
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java773 String attributeName = clazz.getString(u2attributeNameIndex);
775 attributeName.equals(ClassConstants.ATTR_SourceFile) ? (Attribute)new SourceFileAttribute():
776 attributeName.equals(ClassConstants.ATTR_SourceDir) ? (Attribute)new SourceDirAttribute():
777 attributeName.equals(ClassConstants.ATTR_InnerClasses) ? (Attribute)new InnerClassesAttribute():
778 attributeName.equals(ClassConstants.ATTR_EnclosingMethod) ? (Attribute)new EnclosingMethodAttribute():
779 attributeName.equals(ClassConstants.ATTR_Deprecated) ? (Attribute)new DeprecatedAttribute():
780 attributeName.equals(ClassConstants.ATTR_Synthetic) ? (Attribute)new SyntheticAttribute():
781 attributeName.equals(ClassConstants.ATTR_Signature) ? (Attribute)new SignatureAttribute():
782 attributeName.equals(ClassConstants.ATTR_ConstantValue) ? (Attribute)new ConstantValueAttribute():
783 attributeName
[all...]

Completed in 7247 milliseconds

123