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

1 2 3 4

  /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/Source/WebCore/svg/properties/
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)
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)
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)
SVGAnimatedPropertyDescription.h 52 SVGAnimatedPropertyDescription(SVGElement* element, const AtomicString& attributeName)
54 , m_attributeName(attributeName.impl())
SVGAnimatedListPropertyTearOff.h 88 static PassRefPtr<SVGAnimatedListPropertyTearOff<PropertyType> > create(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
91 return adoptRef(new SVGAnimatedListPropertyTearOff<PropertyType>(contextElement, attributeName, values));
95 SVGAnimatedListPropertyTearOff(SVGElement* contextElement, const QualifiedName& attributeName, PropertyType& values)
96 : SVGAnimatedProperty(contextElement, attributeName)
  /packages/apps/Mms/src/org/w3c/dom/smil/
ElementTargetAttributes.java 23 public void setAttributeName(String attributeName);
  /external/webkit/Source/WebCore/svg/
SVGStringList.h 35 SVGStringList(const QualifiedName& attributeName)
36 : m_attributeName(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);
  /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)
  /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/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...]
  /external/webkit/Source/WebKit/chromium/src/
WebPageSerializer.cpp 63 const QualifiedName* attributeName = 0;
65 attributeName = &HTMLNames::srcAttr;
69 attributeName = &HTMLNames::srcAttr;
74 attributeName = &HTMLNames::backgroundAttr;
79 attributeName = &HTMLNames::citeAttr;
85 attributeName = &HTMLNames::hrefAttr;
88 attributeName = &HTMLNames::dataAttr;
90 attributeName = &HTMLNames::srcAttr;
92 if (!attributeName)
95 String value = element->getAttribute(*attributeName);
    [all...]
  /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...]
  /external/webkit/Source/WebCore/accessibility/mac/
AccessibilityObjectWrapper.mm     [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
ShaderProgram.java 144 public void setAttributeValues(String attributeName, float[] data, int componentCount) {
145 if (!setShaderAttributeValues(attributeName, data, componentCount)) {
147 attributeName + "'!");
151 public void setAttributeValues(String attributeName,
158 if (!setShaderAttributeVertexFrame(attributeName,
166 attributeName + "'!");
289 private native boolean setShaderAttributeValues(String attributeName,
293 private native boolean setShaderAttributeVertexFrame(String attributeName,
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGenerator.pm 445 my ($object, $interfaceName, $attributeName) = @_;
446 return "SVGNames" if $interfaceName =~ /^SVG/ && !$svgAttributesInHTMLHash{$attributeName};
470 my $attributeName = $attribute->signature->name;
474 $attributeName = "_operator" if $attributeName eq "operator";
478 $attributeName = "svgTarget" if $attributeName eq "target" and $attributeType eq "SVGAnimatedString";
482 $attributeName .= "Animated" if $generator->IsSVGAnimatedType($attributeType);
484 return $attributeName;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestContentAssist.java 52 String parentTagName, String attributeName, Node node, String wordPrefix,
54 if (attributeName.endsWith(':' + ATTRIBUTE_MIN_SDK_VERSION)) {
95 super.computeAttributeValues(proposals, offset, parentTagName, attributeName, node,
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
ScrollViewChildDetector.java 83 String attributeName = isHorizontal ? ATTR_LAYOUT_WIDTH : ATTR_LAYOUT_HEIGHT;
85 Attr sizeNode = child.getAttributeNodeNS(ANDROID_URI, attributeName);
89 child.getTagName(), attributeName);

Completed in 440 milliseconds

1 2 3 4