HomeSort by relevance Sort by last modified time
    Searched defs:attributeName (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationRecord.h 67 virtual const AtomicString& attributeName() { return nullAtom; }
DatasetDOMStringMap.cpp 74 static bool propertyNameMatchesAttributeName(const CharType1* propertyName, const CharType2* attributeName, unsigned propertyLength, unsigned attributeLength)
80 if (attributeName[a] == '-' && a + 1 < attributeLength && isASCIILower(attributeName[a + 1]))
83 if ((wordBoundary ? toASCIIUpper(attributeName[a]) : attributeName[a]) != propertyName[p])
94 static bool propertyNameMatchesAttributeName(const String& propertyName, const String& attributeName)
96 if (!attributeName.startsWith("data-"))
100 unsigned attributeLength = attributeName.length();
103 if (attributeName.is8Bit())
104 return propertyNameMatchesAttributeName(propertyName.characters8(), attributeName.characters8(), propertyLength, attributeLength)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLMetaCharsetParser.cpp 59 String attributeName = attemptStaticStringCreation(iter->name, Likely8Bit);
61 attributes.append(std::make_pair(attributeName, attributeValue));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omaha/
XMLParser.java 89 String attributeName = attributes.getLocalName(i);
90 String attributeValue = attributes.getValue(attributeName);
91 currentNode.attributes.put(attributeName, attributeValue);
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.h 73 const QualifiedName& attributeName() const
91 SVGAnimatedPropertyBase(AnimatedPropertyType, SVGElement*, const QualifiedName& attributeName);
163 SVGAnimatedPropertyCommon(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
164 : SVGAnimatedPropertyBase(Property::classType(), contextElement, attributeName)
212 ASSERT(this->attributeName() != QualifiedName::null());
214 this->contextElement()->svgAttributeChanged(this->attributeName());
223 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
224 : SVGAnimatedPropertyCommon<Property>(contextElement, attributeName, initialValue)
239 static PassRefPtr<SVGAnimatedProperty<Property> > create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtr<Property> initialValue)
241 return adoptRef(new SVGAnimatedProperty<Property>(contextElement, attributeName, initialValue))
    [all...]
SVGPropertyTearOff.h 81 const QualifiedName& attributeName()
86 void attachToSVGElementAttribute(SVGElement* contextElement, const QualifiedName& attributeName)
90 ASSERT(attributeName != QualifiedName::null());
92 m_attributeName = attributeName;
98 SVGPropertyTearOffBase(SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
102 , m_attributeName(attributeName)
134 SVGPropertyTearOff(PassRefPtr<Property> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null())
135 : SVGPropertyTearOffBase(contextElement, propertyIsAnimVal, attributeName)
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 163 const QualifiedName& attributeName = this->attributeName();
164 ShouldApplyAnimation shouldApply = shouldApplyAnimation(targetElement, attributeName);
190 ASSERT(SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName));
191 computeCSSPropertyValue(targetElement, cssPropertyID(attributeName.localName()), baseValue);
219 static inline void applyCSSPropertyToTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName, const String& valueAsString)
222 if (attributeName == anyQName() || !targetElement->inDocument() || !targetElement->parentNode())
225 CSSPropertyID id = cssPropertyID(attributeName.localName());
239 static inline void removeCSSPropertyFromTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName)
242 if (attributeName == anyQName() || !targetElement->inDocument() || !targetElement->parentNode()
    [all...]
SVGAnimatedTypeAnimator.cpp 45 const QualifiedName& attributeName = m_animationElement->attributeName();
46 m_animatedProperty = m_contextElement->propertyFromAttribute(attributeName);
48 : SVGElement::animatedPropertyTypeForCSSAttribute(attributeName);
159 void setAnimatedValueOnAllTargetProperties(const WillBeHeapVector<RawPtrWillBeMember<SVGElement> >& list, const QualifiedName& attributeName, PassRefPtr<SVGPropertyBase> passValue)
166 RefPtr<SVGAnimatedPropertyBase> animatedProperty = (*it)->propertyFromAttribute(attributeName);
179 setAnimatedValueOnAllTargetProperties(list, m_animatedProperty->attributeName(), animatedValue);
200 RefPtr<SVGAnimatedPropertyBase> animatedProperty = (*it)->propertyFromAttribute(m_animatedProperty->attributeName());
SVGAnimationElement.cpp 341 bool SVGAnimationElement::isTargetAttributeCSSProperty(SVGElement* targetElement, const QualifiedName& attributeName)
345 return SVGElement::isAnimatableCSSProperty(attributeName);
348 SVGAnimationElement::ShouldApplyAnimation SVGAnimationElement::shouldApplyAnimation(SVGElement* targetElement, const QualifiedName& attributeName)
350 if (!hasValidAttributeType() || !targetElement || attributeName == anyQName())
354 if (isTargetAttributeCSSProperty(targetElement, attributeName))
357 // If attributeType="CSS" and attributeName doesn't point to a CSS property, ignore the animation.
638 void SVGAnimationElement::adjustForInheritance(SVGElement* targetElement, const QualifiedName& attributeName, String& value)
649 computeCSSPropertyValue(svgParent, cssPropertyID(attributeName.localName()), value);
652 static bool inheritsFromProperty(SVGElement* targetElement, const QualifiedName& attributeName, const String& value)
659 return SVGElement::isAnimatableCSSProperty(attributeName);
    [all...]
SVGElement.cpp 618 AnimatedPropertyType SVGElement::animatedPropertyTypeForCSSAttribute(const QualifiedName& attributeName)
680 if (cssPropertyMap.contains(attributeName))
681 return cssPropertyMap.get(attributeName);
689 QualifiedName attributeName = property->attributeName();
690 m_attributeToPropertyMap.set(attributeName, property.release());
693 PassRefPtr<SVGAnimatedPropertyBase> SVGElement::propertyFromAttribute(const QualifiedName& attributeName)
695 AttributeToPropertyMap::iterator it = m_attributeToPropertyMap.find<SVGAttributeHashTranslator>(attributeName);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 69 const QualifiedName& attributeName = element->subResourceAttributeName();
70 if (attributeName == QualifiedName::null())
73 String value = element->getAttribute(attributeName);
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h 64 const QualifiedName& attributeName() const { return m_attributeName; }
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlPolicyBuilder.java 303 for (String attributeName : attributeNames) {
304 b.add(HtmlLexer.canonicalName(attributeName));
327 for (String attributeName : attributeNames) {
333 AttributePolicy oldPolicy = globalAttrPolicies.get(attributeName);
335 attributeName, AttributePolicy.Util.join(oldPolicy, policy));
350 for (String attributeName : attributeNames) {
351 AttributePolicy oldPolicy = policies.get(attributeName);
353 attributeName,
600 String attributeName = ape.getKey();
603 if (globalAttrPolicies.containsKey(attributeName)) { continue;
    [all...]
  /external/chromium_org/remoting/webapp/js_proto/
dom_proto.js 113 MutationRecord.prototype.attributeName;
  /external/chromium_org/third_party/skia/src/ports/
SkFontConfigParser_android.cpp 322 const char* attributeName = attributes[currentAttributeIndex];
324 size_t nameLength = strlen(attributeName);
326 if (nameLength == 7 && strncmp(attributeName, "variant", nameLength) == 0) {
340 } else if (nameLength == 4 && strncmp(attributeName, "lang", nameLength) == 0) {
348 } else if (nameLength == 5 && strncmp(attributeName, "index", nameLength) == 0) {
356 //each element is a pair of attributeName/attributeValue string pairs
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 169 String attributeName = parser.getAttributeName(counter);
171 ((SoapObject) obj).addAttribute(attributeName, value);
  /external/owasp/sanitizer/distrib/lib/
owasp-java-html-sanitizer.jar 
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 267 inline const QualifiedName& attributeName() const { return m_attrName; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorDOMAgent.cpp 770 String attributeName = it->name().toString();
772 attributeName = attributeName.lower();
773 foundOriginalAttribute |= name && attributeName == caseAdjustedName;
774 if (!m_domEditor->setAttribute(element, attributeName, it->value(), errorString))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.expressions_3.4.200.v20100505.jar 
org.eclipse.debug.core_3.6.0.v20100519.jar 
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar 
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 537 milliseconds

1 2