HomeSort by relevance Sort by last modified time
    Searched full:attributename (Results 1 - 25 of 164) sorted by null

1 2 3 4 5 6 7

  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceReferenceResolver.java 38 private void resolveUnresolvedReferences(String attributeName, T value) {
39 List<String> references = unresolvedReferences.remove(attributeName);
48 private void addUnresolvedReference(String valuePointer, String attributeName) {
49 List<String> references = unresolvedReferences.get(attributeName);
52 unresolvedReferences.put(attributeName, references);
58 String attributeName = rawValue.substring(1);
59 T value = attributeNamesToValues.get(attributeName);
61 addUnresolvedReference(valuePointer, attributeName);
  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAttributeToPropertyMap.cpp 38 const QualifiedName& attributeName = firstProperty->attributeName;
43 PropertiesVector* vector = getOrCreatePropertiesVector(attributeName);
49 ASSERT(attributeName == (*mapVectorIt)->attributeName);
59 PropertiesVector* vector = getOrCreatePropertiesVector(info->attributeName);
64 void SVGAttributeToPropertyMap::animatedPropertiesForAttribute(SVGElement* ownerType, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >& properties)
67 PropertiesVector* vector = m_map.get(attributeName);
74 properties.append(animatedProperty(ownerType, attributeName, *vectorIt));
77 void SVGAttributeToPropertyMap::animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>& propertyTypes
    [all...]
SVGAttributeToPropertyMap.h 44 void animatedPropertiesForAttribute(SVGElement* contextElement, const QualifiedName& attributeName, Vector<RefPtr<SVGAnimatedProperty> >&);
45 void animatedPropertyTypeForAttribute(const QualifiedName& attributeName, Vector<AnimatedPropertyType>&);
48 bool synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName);
52 void synchronizeProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*);
53 PassRefPtr<SVGAnimatedProperty> animatedProperty(SVGElement* contextElement, const QualifiedName& attributeName, const SVGPropertyInfo*);
SVGAnimatedEnumerationPropertyTearOff.h 42 static PassRefPtr<SVGAnimatedEnumerationPropertyTearOff<EnumType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, EnumType& property)
45 return adoptRef(new SVGAnimatedEnumerationPropertyTearOff<EnumType>(contextElement, attributeName, animatedPropertyType, reinterpret_cast<unsigned&>(property)));
56 SVGAnimatedEnumerationPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, unsigned& property)
57 : SVGAnimatedStaticPropertyTearOff<unsigned>(contextElement, attributeName, animatedPropertyType, property)
SVGAnimatedStaticPropertyTearOff.h 52 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
55 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
102 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
103 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
SVGAnimatedTransformListPropertyTearOff.h 45 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
48 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, animatedPropertyType, values));
52 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, SVGTransformList& values)
53 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, animatedPropertyType, values)
SVGAnimatedPropertyTearOff.h 61 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
64 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, animatedPropertyType, property));
110 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, AnimatedPropertyType animatedPropertyType, PropertyType& property)
111 : SVGAnimatedProperty(contextElement, attributeName, animatedPropertyType)
  /external/chromium_org/third_party/WebKit/ManualTests/animation/
set-to.svg 4 <set attributeName='x' to='0' dur='3s' />
5 <set attributeName='fill' to='green' dur='3s' />
animateTransform-parser.svg 13 <animateTransform attributeName="transform" type="rotate" from=" 0, 200, 200" to=" 360, 200, 200"
17 <animateTransform attributeName="transform" type="rotate" from=" 0 200 200" to=" 360 200 200"
21 <animateTransform attributeName="transform" type="rotate" from=" 0,200,200" to=" 360,200,200"
25 <animateTransform attributeName="transform" type="rotate" from=" 0,+200 +200" to=" 360 +200 +200"
32 <animateTransform attributeName="transform" type="translate" from="0, 0" to="200, 200" dur="5s" />
35 <animateTransform attributeName="transform" type="translate" from="0 0" to="200 200" dur="5s" />
38 <animateTransform attributeName="transform" type="translate" from="0,0" to="200,200" dur="5s" />
41 <animateTransform attributeName="transform" type="translate" from=" +0,+0" to=" +200 +200" dur="5s" />
47 <animateTransform attributeName="transform" type="scale" from="1,1" by="0,1" dur="5s" />
50 <animateTransform attributeName="transform" type="scale" from="1 1" by="0 1" dur="5s" /
    [all...]
animateColor-by.svg 3 <animateColor attributeName="fill" by='green' dur='3s' fill='freeze' />
animateColor-from-by.svg 3 <animateColor attributeName="fill" from='#DD0000' by='#0000DD' dur='3s' fill='freeze' />
animateColor-repeat-indefinite.svg 3 <animateColor attributeName="fill" values='blue; green' dur='2s' repeatCount='indefinite' />
animateColor-to-from.svg 3 <animateColor attributeName="fill" from='blue' to='green' dur='3s' fill='freeze' />
animateColor-to.svg 3 <animateColor attributeName="fill" to='green' dur='3s' fill='freeze' />
animateColor-values-simple.svg 3 <animateColor attributeName="fill" values='blue; green' dur='3s' fill='freeze' />
animateTransform-repeat-once.svg 3 <animateTransform attributeName="transform" type='translate' from='0,0' to='100,0' dur='2s' repeatCount='2' fill='freeze' />
animateTransform-toanimation.svg 5 <animateTransform attributeName="transform" type="scale" to="5" dur="5s" />
  /external/proguard/src/proguard/classfile/editor/
NamedAttributeDeleter.java 36 private final String attributeName;
39 public NamedAttributeDeleter(String attributeName)
41 this.attributeName = attributeName;
52 new AttributesEditor(programClass, false).deleteAttribute(attributeName);
  /external/chromium-trace/trace-viewer/src/base/
properties.js 101 var attributeName = getAttributeName(name);
103 return this.getAttribute(attributeName);
106 var attributeName = getAttributeName(name);
108 return this.hasAttribute(attributeName);
143 var attributeName = getAttributeName(name);
145 var oldValue = this.getAttribute(attributeName);
148 this.removeAttribute(attributeName);
150 this.setAttribute(attributeName, value);
159 var attributeName = getAttributeName(name);
161 var oldValue = (this.getAttribute(attributeName) === name)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 71 targetElement->animatedPropertyTypeForAttribute(attributeName(), propertyTypes);
207 const QualifiedName& attributeName = this->attributeName();
208 ShouldApplyAnimation shouldApply = shouldApplyAnimation(targetElement, attributeName);
215 m_animatedProperties = animator->findAnimatedPropertiesForAttributeName(targetElement, attributeName);
237 ASSERT(SVGAnimationElement::isTargetAttributeCSSProperty(targetElement, attributeName));
238 computeCSSPropertyValue(targetElement, cssPropertyID(attributeName.localName()), baseValue);
244 m_animatedType->setValueAsString(attributeName, baseValue);
265 static inline void applyCSSPropertyToTargetAndInstances(SVGElement* targetElement, const QualifiedName& attributeName, const String& valueAsString)
268 if (attributeName == anyQName() || !targetElement->inDocument() || !targetElement->parentNode()
    [all...]
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java 36 * @param attributeName {@code non-null;} the name of the attribute
41 public BaseAnnotations(String attributeName, Annotations annotations,
43 super(attributeName);
BaseParameterAnnotations.java 36 * @param attributeName {@code non-null;} the name of the attribute
41 public BaseParameterAnnotations(String attributeName,
43 super(attributeName);
  /external/chromium/chrome/browser/resources/shared/images/
throbber.svg 8 <animateTransform attributeName="transform" attributeType="XML"
  /external/chromium_org/third_party/WebKit/ManualTests/
svg-animateTransform-calcMode-discrete.svg 4 <animateTransform attributeName="transform" type="translate" from="0,0" to="100,0" calcMode="discrete" fill="freeze" dur="4s"/>
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MutationObserverInterestGroup.cpp 39 PassOwnPtr<MutationObserverInterestGroup> MutationObserverInterestGroup::createIfNeeded(Node& target, MutationObserver::MutationType type, MutationRecordDeliveryOptions oldValueFlag, const QualifiedName* attributeName)
41 ASSERT((type == MutationObserver::Attributes && attributeName) || !attributeName);
43 target.getRegisteredMutationObserversOfType(observers, type, attributeName);

Completed in 327 milliseconds

1 2 3 4 5 6 7