HomeSort by relevance Sort by last modified time
    Searched refs:Attribute (Results 101 - 125 of 686) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/
ProgramMethod.java 23 import proguard.classfile.attribute.visitor.AttributeVisitor;
24 import proguard.classfile.attribute.Attribute;
58 Attribute[] attributes,
ProgramMember.java 24 import proguard.classfile.attribute.*;
25 import proguard.classfile.attribute.visitor.AttributeVisitor;
39 public Attribute[] attributes;
62 Attribute[] attributes)
101 * Returns the (first) attribute with the given name.
103 private Attribute getAttribute(Clazz clazz, String name)
107 Attribute attribute = attributes[index]; local
108 if (attribute.getAttributeName(clazz).equals(name))
110 return attribute;
    [all...]
  /external/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.annotation.visitor.AnnotationVisitor;
28 * This Attribute represents an annotations attribute.
32 public abstract class AnnotationsAttribute extends Attribute
ParameterAnnotationsAttribute.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.Attribute;
25 import proguard.classfile.attribute.annotation.visitor.AnnotationVisitor;
28 * This Attribute represents a runtime parameter annotations attribute.
32 public abstract class ParameterAnnotationsAttribute extends Attribute
  /external/webkit/Source/WebCore/html/
HTMLBaseElement.cpp 26 #include "Attribute.h"
45 void HTMLBaseElement::parseMappedAttribute(Attribute* attribute)
47 if (attribute->name() == hrefAttr || attribute->name() == targetAttr)
50 HTMLElement::parseMappedAttribute(attribute);
65 bool HTMLBaseElement::isURLAttribute(Attribute* attribute) const
67 return attribute->name() == hrefAttr;
HTMLFrameElementBase.h 55 virtual void parseMappedAttribute(Attribute*);
63 virtual bool isURLAttribute(Attribute*) const;
HTMLVideoElement.h 78 virtual void parseMappedAttribute(Attribute*);
82 virtual bool isURLAttribute(Attribute*) const;
HTMLKeygenElement.h 44 virtual void parseMappedAttribute(Attribute*);
HTMLMapElement.h 50 virtual void parseMappedAttribute(Attribute*);
HTMLMarqueeElement.h 57 virtual void parseMappedAttribute(Attribute*);
HTMLQuoteElement.cpp 51 bool HTMLQuoteElement::isURLAttribute(Attribute* attribute) const
53 return attribute->name() == citeAttr;
HTMLSourceElement.h 54 virtual bool isURLAttribute(Attribute*) const;
HTMLTrackElement.h 56 virtual bool isURLAttribute(Attribute*) const;
  /external/webkit/Source/WebCore/svg/
SVGScriptElement.h 47 virtual void parseMappedAttribute(Attribute*);
56 virtual bool isURLAttribute(Attribute*) const;
SVGFEOffsetElement.h 38 virtual void parseMappedAttribute(Attribute*);
SVGFETileElement.h 37 virtual void parseMappedAttribute(Attribute*);
SVGFontFaceUriElement.h 44 virtual void parseMappedAttribute(Attribute*);
SVGGElement.h 50 virtual void parseMappedAttribute(Attribute*);
SVGMPathElement.h 44 virtual void parseMappedAttribute(Attribute*);
SVGStopElement.h 39 virtual void parseMappedAttribute(Attribute*);
SVGSymbolElement.h 45 virtual void parseMappedAttribute(Attribute*);
SVGTRefElement.h 38 virtual void parseMappedAttribute(Attribute*);
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeFactory.java 20 import com.android.dx.cf.iface.Attribute;
29 * Factory capable of instantiating various {@link Attribute} subclasses
56 * Parses and makes an attribute based on the bytes at the
67 * @return {@code non-null;} an appropriately-constructed {@link Attribute}
69 public final Attribute parse(DirectClassFile cf, int context, int offset,
101 "attribute at offset " + Hex.u4(offset));
107 * Parses attribute content. The base class implements this by constructing
114 * @param name {@code non-null;} the attribute name
116 * is the offset to the start of attribute data, not to the header
117 * @param length the length of the attribute dat
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HyperRef.java 29 getAttributes ().set (Attribute.HREF, href);
  /external/proguard/src/proguard/classfile/attribute/visitor/
AllExceptionInfoVisitor.java 21 package proguard.classfile.attribute.visitor;
24 import proguard.classfile.attribute.*;
48 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}

Completed in 186 milliseconds

1 2 3 45 6 7 8 91011>>