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

1 2 3

  /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))
  /external/webkit/WebCore/svg/
SVGLengthList.h 32 static PassRefPtr<SVGLengthList> create(const QualifiedName& attributeName) { return adoptRef(new SVGLengthList(attributeName)); }
SVGNumberList.h 34 static PassRefPtr<SVGNumberList> create(const QualifiedName& attributeName) { return adoptRef(new SVGNumberList(attributeName)); }
SVGPointList.h 35 static PassRefPtr<SVGPointList> create(const QualifiedName& attributeName) { return adoptRef(new SVGPointList(attributeName)); }
SVGStringList.h 32 static PassRefPtr<SVGStringList> create(const QualifiedName& attributeName) { return adoptRef(new SVGStringList(attributeName)); }
SVGTransformList.h 35 static PassRefPtr<SVGTransformList> create(const QualifiedName& attributeName) { return adoptRef(new SVGTransformList(attributeName)); }
SVGPathSegList.h 36 static PassRefPtr<SVGPathSegList> create(const QualifiedName& attributeName) { return adoptRef(new SVGPathSegList(attributeName)); }
SVGPointList.cpp 29 SVGPointList::SVGPointList(const QualifiedName& attributeName)
30 : SVGPODList<FloatPoint>(attributeName)
SVGLengthList.cpp 30 SVGLengthList::SVGLengthList(const QualifiedName& attributeName)
31 : SVGPODList<SVGLength>(attributeName)
SVGNumberList.cpp 30 SVGNumberList::SVGNumberList(const QualifiedName& attributeName)
31 : SVGPODList<float>(attributeName)
SVGStringList.cpp 30 SVGStringList::SVGStringList(const QualifiedName& attributeName)
31 : SVGList<String>(attributeName)
SVGTransformList.cpp 32 SVGTransformList::SVGTransformList(const QualifiedName& attributeName)
33 : SVGPODList<SVGTransform>(attributeName)
SVGAnimatedTemplate.h 43 , attributeName(0)
59 , attributeName(_attributeName.impl())
62 ASSERT(attributeName);
67 return element == other.element && attributeName == other.attributeName;
71 AtomicStringImpl* attributeName;
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTargetAttributes.java 23 public void setAttributeName(String attributeName);
  /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);
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_elementretrieveallattributes.java 66 String attributeName;
82 attributeName = attribute.getNodeName();
83 actual.add(attributeName);
hc_nodecloneattributescopied.java 68 String attributeName;
87 attributeName = attributeNode.getNodeName();
88 result.add(attributeName);
nodecloneattributescopied.java 71 String attributeName;
85 attributeName = attributeNode.getNodeName();
86 result.add(attributeName);
  /external/webkit/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]
  /external/webkit/WebCore/svg/animation/
SMILTimeContainer.cpp 200 String attributeName = key.second;
202 ASSERT(!attributeName.isEmpty());
204 if (SVGAnimationElement::attributeIsCSS(attributeName))
205 baseValue = computedStyle(target)->getPropertyValue(cssPropertyID(attributeName));
207 baseValue = target->getAttribute(attributeName);
266 String attributeName = animation->attributeName();
267 if (attributeName.isEmpty()) {
269 attributeName = SVGNames::animateMotionTag.localName();
275 ElementAttributePair key(targetElement, attributeName);
    [all...]
  /external/webkit/WebCore/bindings/js/
JSSVGContextCache.h 65 static void propagateSVGDOMChange(DOMObject* wrapper, const QualifiedName& attributeName)
75 context->svgAttributeChanged(attributeName);
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 773 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.equals(ClassConstants.ATTR_Exceptions) ? (Attribute)new ExceptionsAttrib (…)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AndroidTargetData.java 230 * @param attributeName the name of the attribute
234 public String[] getAttributeValues(String elementName, String attributeName) {
235 String key = String.format("(%1$s,%2$s)", elementName, attributeName); //$NON-NLS-1$
248 * @param attributeName the name of the attribute
253 public String[] getAttributeValues(String elementName, String attributeName,
257 greatGrandParentElementName, elementName, attributeName);
264 return getAttributeValues(elementName, attributeName);

Completed in 752 milliseconds

1 2 3