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

1234

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DMicroDataAttributeTokenList.cpp41 MicroDataAttributeTokenList::MicroDataAttributeTokenList(Element* element, const QualifiedName& attributeName) argument
44 , m_attributeName(attributeName)
H A DMicroDataAttributeTokenList.h45 static PassRefPtr<MicroDataAttributeTokenList> create(Element* element, const QualifiedName& attributeName) argument
47 return adoptRef(new MicroDataAttributeTokenList(element, attributeName));
/macosx-10.9.5/WebCore-7537.78.1/svg/properties/
H A DSVGAttributeToPropertyMap.h41 void animatedPropertiesForAttribute(SVGElement* contextElement, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >&);
42 void animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>&);
45 bool synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName);
48 void synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*);
49 PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*);
H A DSVGAttributeToPropertyMap.cpp50 ASSERT(info->attributeName != anyQName());
51 if (PropertiesVector* vector = m_map.get(info->attributeName)) {
58 m_map.set(info->attributeName, vector.release());
61 void SVGAttributeToPropertyMap::animatedPropertiesForAttribute(SVGElement* ownerType, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >& properties) argument
64 PropertiesVector* vector = m_map.get(attributeName);
70 properties.append(animatedProperty(ownerType, attributeName, *vectorIt));
73 void SVGAttributeToPropertyMap::animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>& propertyTypes) argument
75 PropertiesVector* vector = m_map.get(attributeName);
98 bool SVGAttributeToPropertyMap::synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName) argument
101 PropertiesVector* vector = m_map.get(attributeName);
112 synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo* info) argument
120 animatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo* info) argument
[all...]
H A DSVGAnimatedEnumerationPropertyTearOff.h43 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property) argument
46 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
57 SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property) argument
58 : SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, property)
H A DSVGAnimatedStaticPropertyTearOff.h51 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
54 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
101 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
102 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
H A DSVGAnimatedTransformListPropertyTearOff.h46 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values) argument
49 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
53 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values) argument
54 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedPropertyType, values)
H A DSVGAnimatedPropertyDescription.h52 SVGAnimatedPropertyDescription(SVGElement* element, const AtomicString& attributeName) argument
54 , m_attributeName(attributeName.impl())
H A DSVGPropertyInfo.h69 , attributeName(newAttributeName)
78 const QualifiedName& attributeName; member in struct:WebCore::SVGPropertyInfo
H A DSVGAnimatedPropertyTearOff.h61 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
64 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
110 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property) argument
111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
H A DSVGAnimatedPathSegListPropertyTearOff.h63 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values) argument
66 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
108 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGPathSegList& values) argument
109 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, animatedPropertyType, values)
H A DSVGAnimatedProperty.h36 const QualifiedName& attributeName() const { return m_attributeName; } function in class:WebCore::SVGAnimatedProperty
78 wrapper = TearOffType::create(element, info->attributeName, info->animatedPropertyType, property);
101 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType) argument
103 , m_attributeName(attributeName)
/macosx-10.9.5/WebCore-7537.78.1/accessibility/win/
H A DAccessibilityObjectWrapperWin.cpp39 void AccessibilityObjectWrapper::accessibilityAttributeValue(const AtomicString& attributeName, VARIANT* result) argument
44 if (attributeName == "AXTitleUIElementAttribute") {
61 if (attributeName == "AXDRTElementIdAttribute") {
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DSVGStringList.h35 SVGStringList(const QualifiedName& attributeName) argument
36 : m_attributeName(attributeName)
H A DSVGAnimateElement.cpp69 targetElement->animatedPropertyTypeForAttribute(attributeName(), propertyTypes);
206 const QualifiedName& attributeName = this->attributeName(); local
207 ShouldApplyAnimation shouldApply = shouldApplyAnimation(targetElement, attributeName);
210 m_animatedProperties = animator->findAnimatedPropertiesForAttributeName(targetElement, attributeName);
228 ASSERT(SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName));
229 computeCSSPropertyValue(targetElement, cssPropertyID(attributeName.localName()), baseValue);
235 m_animatedType->setValueAsString(attributeName, baseValue);
256 static inline void applyCSSPropertyToTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName, const String& valueAsString) argument
259 if (attributeName
276 removeCSSPropertyFromTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName) argument
296 notifyTargetAboutAnimValChange(SVGElement* targetElement, const QualifiedName& attributeName) argument
302 notifyTargetAndInstancesAboutAnimValChange(SVGElement* targetElement, const QualifiedName& attributeName) argument
406 setAttributeName(const QualifiedName& attributeName) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DMutationObserverInterestGroup.cpp42 PassOwnPtr<MutationObserverInterestGroup> MutationObserverInterestGroup::createIfNeeded(Node* target, MutationObserver::MutationType type, MutationRecordDeliveryOptions oldValueFlag, const QualifiedName* attributeName) argument
44 ASSERT((type == MutationObserver::Attributes && attributeName) || !attributeName);
46 target->getRegisteredMutationObserversOfType(observers, type, attributeName);
H A DMutationObserverInterestGroup.h62 static PassOwnPtr<MutationObserverInterestGroup> createForAttributesMutation(Node* target, const QualifiedName& attributeName) argument
67 return createIfNeeded(target, MutationObserver::Attributes, MutationObserver::AttributeOldValue, &attributeName);
74 static PassOwnPtr<MutationObserverInterestGroup> createIfNeeded(Node* target, MutationObserver::MutationType, MutationRecordDeliveryOptions oldValueFlag, const QualifiedName* attributeName = 0);
H A DMutationObserverRegistration.cpp108 bool MutationObserverRegistration::shouldReceiveMutationFrom(Node* node, MutationObserver::MutationType type, const QualifiedName* attributeName) const
110 ASSERT((type == MutationObserver::Attributes && attributeName) || !attributeName);
120 if (!attributeName->namespaceURI().isNull())
123 return m_attributeFilter.contains(attributeName->localName());
H A DMutationRecord.idl42 [TreatReturnedNullStringAs=Null] readonly attribute DOMString attributeName;
H A DDatasetDOMStringMap.cpp74 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName) argument
76 if (!attributeName.startsWith("data-"))
80 const UChar* attribute = attributeName.characters();
82 unsigned attributeLength = attributeName.length();
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/IAS/
H A DIrIASService.h178 TIASAttribute* FindAttribute(const UChar* attributeName);
198 IrDAErr AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue);
199 IrDAErr AddStringEntry(const UChar* className, const UChar* attributeName, const UChar* stringValue, UChar charSet, ULong length);
200 IrDAErr AddNBytesEntry(const UChar* className, const UChar* attributeName, const UChar* aFewBytes, ULong length);
203 TIASAttribute* FindAttribute(const UChar* className, const UChar* attributeName);
204 IrDAErr RemoveAttribute(const UChar* className, const UChar* attributeName, ULong flags = kIASDeleteClass | kIASDeleteAttribute);
210 TIASAttribute* AddAttribute(const UChar* className, const UChar* attributeName, ULong& flags);
211 IrDAErr AddAttributeEntry(const UChar* className, const UChar* attributeName, TIASElement* theEntry);
H A DIrIASService.cpp96 IrDAErr TIASService::AddIntegerEntry(const UChar* className, const UChar* attributeName, ULong intValue) argument
105 return AddAttributeEntry(className, attributeName, theEntry);
116 IrDAErr TIASService::AddStringEntry(const UChar* className, const UChar* attributeName, argument
126 return AddAttributeEntry(className, attributeName, theEntry);
137 IrDAErr TIASService::AddNBytesEntry(const UChar* className, const UChar* attributeName, const UChar* aFewBytes, ULong length) argument
146 return AddAttributeEntry(className, attributeName, theEntry);
157 IrDAErr TIASService::AddAttributeEntry(const UChar* className, const UChar* attributeName, TIASElement* theEntry) argument
164 theAttr = AddAttribute(className, attributeName, flags);
174 RemoveAttribute(className, attributeName, flags);
187 TIASAttribute* TIASService::AddAttribute(const UChar* className, const UChar* attributeName, ULon argument
288 RemoveAttribute(const UChar* className, const UChar* attributeName, ULong flags) argument
323 FindAttribute(const UChar* className, const UChar* attributeName) argument
398 FindAttribute(const UChar* attributeName) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/bindings/scripts/
H A Dpreprocess-idls.pl172 foreach my $attributeName (keys %{$extendedAttributes}) {
173 next unless ($attributeName eq "Conditional" || $attributeName eq "EnabledAtRuntime" || $attributeName eq "EnabledBySetting");
174 my $extendedAttribute = $attributeName;
175 $extendedAttribute .= "=" . $extendedAttributes->{$attributeName} unless $extendedAttributes->{$attributeName} eq "VALUE_IS_MISSING";
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm2124 - (id)accessibilityAttributeValue:(NSString*)attributeName
2129 if ([attributeName isEqualToString: NSAccessibilityRoleAttribute])
2132 if ([attributeName isEqualToString: NSAccessibilitySubroleAttribute])
2135 if ([attributeName isEqualToString: NSAccessibilityRoleDescriptionAttribute])
2138 if ([attributeName isEqualToString: NSAccessibilityParentAttribute]) {
2167 if ([attributeName isEqualToString: NSAccessibilityChildrenAttribute]) {
2189 if ([attributeName isEqualToString: NSAccessibilitySelectedChildrenAttribute]) {
2198 if ([attributeName isEqualToString: NSAccessibilityVisibleChildrenAttribute]) {
2212 if ([attributeName isEqualToString:@"AXLinkUIElements"]) {
2217 if ([attributeName isEqualToStrin
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DHTMLPreloadScanner.cpp125 AtomicString attributeName(iter->name);
127 processAttribute(attributeName, attributeValue);
167 void processAttribute(const NameType& attributeName, const String& attributeValue) argument
169 if (match(attributeName, charsetAttr))
173 if (match(attributeName, srcAttr))
175 else if (match(attributeName, crossoriginAttr) && !attributeValue.isNull())
178 if (match(attributeName, hrefAttr))
180 else if (match(attributeName, relAttr))
182 else if (match(attributeName, mediaAttr))
185 if (match(attributeName, srcAtt
[all...]

Completed in 175 milliseconds

1234