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

1 2 3 4 5

  /external/webkit/Source/WebCore/manual-tests/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);
AttributesEditor.java 144 public void deleteAttribute(String attributeName)
152 attributeName);
159 attributeName);
166 attributeName);
228 String attributeName)
233 attributeName);
257 String attributeName)
261 if (attributes[index].getAttributeName(targetClass).equals(attributeName))
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/resources/types/
AbstractResourceNode.java 59 * @param attributeName The attribute name
63 protected abstract boolean isAttributeValid(String attributeName);
154 * @param attributeName The attribute name
157 public String getAttributeValue(String attributeName)
161 if (attributeName != null)
163 attrValue = attributes.get(attributeName);
186 * @param attributeName The attribute name
191 public boolean addUnknownAttribute(String attributeName, String attributeValue)
195 if (attributeName != null)
197 if (!isAttributeValid(attributeName))
    [all...]
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedTransformListPropertyTearOff.h 49 static PassRefPtr<SVGAnimatedTransformListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
52 return adoptRef(new SVGAnimatedTransformListPropertyTearOff(contextElement, attributeName, values));
55 SVGAnimatedTransformListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGTransformList& values)
56 : SVGAnimatedListPropertyTearOff<SVGTransformList>(contextElement, attributeName, values)
SVGAnimatedPathSegListPropertyTearOff.h 57 static PassRefPtr<SVGAnimatedPathSegListPropertyTearOff> create(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values)
60 return adoptRef(new SVGAnimatedPathSegListPropertyTearOff(contextElement, attributeName, values));
63 SVGAnimatedPathSegListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, SVGPathSegList& values)
64 : SVGAnimatedListPropertyTearOff<SVGPathSegList>(contextElement, attributeName, values)
SVGAnimatedPropertyTearOff.h 49 static PassRefPtr<SVGAnimatedPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
52 return adoptRef(new SVGAnimatedPropertyTearOff<PropertyType>(contextElement, attributeName, property));
55 SVGAnimatedPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
56 : SVGAnimatedProperty(contextElement, attributeName)
SVGAnimatedStaticPropertyTearOff.h 54 static PassRefPtr<SVGAnimatedStaticPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
57 return adoptRef(new SVGAnimatedStaticPropertyTearOff<PropertyType>(contextElement, attributeName, property));
60 SVGAnimatedStaticPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& property)
61 : SVGAnimatedProperty(contextElement, attributeName)
SVGAnimatedProperty.h 37 const QualifiedName& attributeName() const { return m_attributeName; }
65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property)
70 wrapper = TearOffType::create(element, attributeName, property);
85 SVGAnimatedProperty(SVGElement* contextElement, const QualifiedName& attributeName)
87 , m_attributeName(attributeName)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidDocumentChange.java 108 * @param attributeName the attribute
113 private Attr findAttribute(IDOMDocument xmlDoc, String element, String attributeName,
120 Attr attribute = RefactoringUtil.findAndroidAttributes(attributes, attributeName);
141 * @param attributeName the attribute
146 String attributeName, boolean useNamespace) {
154 attribute = RefactoringUtil.findAndroidAttributes(attributes, attributeName);
156 attribute = (Attr) attributes.getNamedItem(attributeName);
247 * @param attributeName the attribute name
253 protected TextEdit createTextEdit(String elementName, String attributeName, String oldValue,
255 return createTextEdit(elementName, attributeName, oldValue, newValue, true)
    [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/webkit/Source/WebCore/html/parser/
HTMLPreloadScanner.cpp 69 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/Source/WebCore/svg/
SVGStringList.h 35 SVGStringList(const QualifiedName& attributeName)
36 : m_attributeName(attributeName)
  /external/webkit/Source/WebCore/svg/animation/
SMILTimeContainer.cpp 200 QualifiedName attributeName = key.second;
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();
269 if (attributeName == anyQName()) {
271 attributeName = SVGNames::animateMotionTag;
277 ElementAttributePair key(targetElement, attributeName);
    [all...]

Completed in 3138 milliseconds

1 2 3 4 5