Searched refs:Attribute (Results 1 - 25 of 563) sorted by relevance

1234567891011>>

/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DAttribute.java7 * $Id: Attribute.java,v 1.1.1.1 2004/05/09 16:57:41 vlad_r Exp $
18 abstract class Attribute implements IContent class in inherits:IContent
22 public static final Attribute ID = new AttributeImpl ("ID");
23 public static final Attribute NAME = new AttributeImpl ("NAME");
24 public static final Attribute TITLE = new AttributeImpl ("TITLE");
25 public static final Attribute TYPE = new AttributeImpl ("TYPE");
26 public static final Attribute CLASS = new AttributeImpl ("CLASS");
27 public static final Attribute HTTP_EQUIV = new AttributeImpl ("HTTP-EQUIV");
28 public static final Attribute CONTENT = new AttributeImpl ("CONTENT");
29 public static final Attribute HRE
51 Attribute () {} method in class:Attribute
[all...]
H A DAttributeSet.java37 public abstract AttributeSet set (Attribute attr, String value);
38 public abstract AttributeSet set (Attribute attr, int value);
59 final Attribute attr = (Attribute) entry.getKey ();
88 public AttributeSet set (final Attribute attr, final String value) // null removes?
95 public AttributeSet set (final Attribute attr, final int value)
109 private final Map /* Attribute->String|Integer */ m_attrMap; // never null
H A DHTMLTable.java38 if (width != null) attrs.set (Attribute.WIDTH, width);
39 if (border != null) attrs.set (Attribute.BORDER, border);
40 if (cellpadding != null) attrs.set (Attribute.CELLPADDING, cellpadding);
41 if (cellspacing != null) attrs.set (Attribute.CELLSPACING, cellspacing);
50 m_caption.getAttributes ().set (Attribute.ALIGN, align);
92 getAttributes ().set (Attribute.COLSPAN, span);
/external/llvm/lib/DebugInfo/
H A DDWARFAttribute.h18 uint16_t Attribute; member in class:llvm::DWARFAttribute
22 : Attribute(attr), Form(form) {}
24 uint16_t getAttribute() const { return Attribute; }
/external/webkit/Source/WebCore/dom/
H A DAttribute.cpp25 #include "Attribute.h"
34 typedef HashMap<Attribute*, Attr*> AttributeAttrMap;
41 PassRefPtr<Attribute> Attribute::clone() const
43 return adoptRef(new Attribute(m_name, m_value, m_isMappedAttribute, m_styleDecl.get()));
46 Attr* Attribute::attr() const
49 ASSERT(attributeAttrMap().contains(const_cast<Attribute*>(this)));
50 return attributeAttrMap().get(const_cast<Attribute*>(this));
53 ASSERT(!attributeAttrMap().contains(const_cast<Attribute*>(this)));
57 PassRefPtr<Attr> Attribute
[all...]
H A DStyledElement.h33 class Attribute;
44 void addCSSLength(Attribute*, int id, const String& value);
45 void addCSSProperty(Attribute*, int id, const String& value);
46 void addCSSProperty(Attribute*, int id, int value);
47 void addCSSImageProperty(Attribute*, int propertyID, const String& url);
48 void addCSSColor(Attribute*, int id, const String& color);
54 static CSSMappedAttributeDeclaration* getMappedAttributeDecl(MappedAttributeEntry, Attribute*);
55 static void setMappedAttributeDecl(MappedAttributeEntry, Attribute*, CSSMappedAttributeDeclaration*);
68 virtual PassRefPtr<Attribute> createAttribute(const QualifiedName&, const AtomicString& value);
76 virtual void attributeChanged(Attribute*, boo
[all...]
H A DAttribute.h41 class Attribute : public RefCounted<Attribute> { class in namespace:WebCore
45 static PassRefPtr<Attribute> create(const QualifiedName& name, const AtomicString& value)
47 return adoptRef(new Attribute(name, value, false, 0));
49 static PassRefPtr<Attribute> createMapped(const QualifiedName& name, const AtomicString& value)
51 return adoptRef(new Attribute(name, value, true, 0));
53 static PassRefPtr<Attribute> createMapped(const AtomicString& name, const AtomicString& value)
55 return adoptRef(new Attribute(name, value, true, 0));
71 PassRefPtr<Attribute> clone() const;
83 // elements may have placed the Attribute i
89 Attribute(const QualifiedName& name, const AtomicString& value, bool isMappedAttribute, CSSMappedAttributeDeclaration* styleDecl) function in class:WebCore::Attribute
98 Attribute(const AtomicString& name, const AtomicString& value, bool isMappedAttribute, CSSMappedAttributeDeclaration* styleDecl) function in class:WebCore::Attribute
[all...]
/external/webkit/Source/WebCore/bindings/js/
H A DScriptEventListener.h41 class Attribute;
46 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Node*, Attribute*);
47 PassRefPtr<JSLazyEventListener> createAttributeEventListener(Frame*, Attribute*);
/external/webkit/Source/WebCore/bindings/v8/
H A DScriptEventListener.h40 class Attribute;
46 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, Attribute*);
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Frame*, Attribute*);
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
H A DAttributedCharacterIteratorAttributeTest.java21 import java.text.AttributedCharacterIterator.Attribute;
34 * @tests java.text.AttributedCharacterIterator$Attribute()
39 assertEquals("Attribute has wrong name", "attribute", attribute.getExposedName());
42 assertEquals("Attribute has wrong name", null, attribute.getExposedName());
46 * @tests java.text.AttributedCharacterIterator.Attribute#equals(Object)
50 assertTrue(Attribute.LANGUAGE.equals(Attribute.LANGUAGE));
52 assertFalse(Attribute.LANGUAGE.equals(Attribute.READING));
67 * @tests java.text.AttributedCharacterIterator$Attribute#readResolv
[all...]
H A DAttributedStringTest.java63 public Object getAttribute(AttributedCharacterIterator.Attribute p) {
72 public int getRunLimit(AttributedCharacterIterator.Attribute p) {
81 public int getRunStart(AttributedCharacterIterator.Attribute p) {
121 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, "a", 2,
125 .getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
128 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE, null,
132 .getRunLimit(AttributedCharacterIterator.Attribute.LANGUAGE));
136 as.addAttribute(AttributedCharacterIterator.Attribute.LANGUAGE,
/external/webkit/Source/WebCore/html/
H A DHTMLBaseElement.h38 virtual bool isURLAttribute(Attribute*) const;
39 virtual void parseMappedAttribute(Attribute*);
H A DHTMLParamElement.h42 virtual void parseMappedAttribute(Attribute*);
44 virtual bool isURLAttribute(Attribute*) const;
H A DHTMLEmbedElement.h38 virtual void parseMappedAttribute(Attribute*);
43 virtual void attributeChanged(Attribute*, bool preserveDecls = false);
45 virtual bool isURLAttribute(Attribute*) const;
/external/webkit/Source/WebCore/svg/
H A DSVGExternalResourcesRequired.h27 class Attribute;
39 bool parseMappedAttribute(Attribute*);
H A DSVGURIReference.h30 class Attribute;
36 bool parseMappedAttribute(Attribute*);
H A DSVGLangSpace.h29 class Attribute;
40 bool parseMappedAttribute(Attribute*);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
H A DAttribute.java12 public class Attribute class in inherits:ASN1Encodable
19 * return an Attribute object from the given object.
24 public static Attribute getInstance(
27 if (o == null || o instanceof Attribute)
29 return (Attribute)o;
34 return new Attribute((ASN1Sequence)o);
40 public Attribute( method in class:Attribute
52 public Attribute( method in class:Attribute
78 * Attribute ::= SEQUENCE {
/external/llvm/lib/VMCore/
H A DAttributes.cpp10 // This file implements the AttributesList class and Attribute utilities.
26 // Attribute Function Definitions
29 std::string Attribute::getAsString(Attributes Attrs) {
31 if (Attrs & Attribute::ZExt)
33 if (Attrs & Attribute::SExt)
35 if (Attrs & Attribute::NoReturn)
37 if (Attrs & Attribute::NoUnwind)
39 if (Attrs & Attribute::UWTable)
41 if (Attrs & Attribute::ReturnsTwice)
43 if (Attrs & Attribute
[all...]
/external/llvm/include/llvm/
H A DFunction.h216 return hasFnAttr(Attribute::ReadNone);
219 if (DoesNotAccessMemory) addFnAttr(Attribute::ReadNone);
220 else removeFnAttr(Attribute::ReadNone);
225 return doesNotAccessMemory() || hasFnAttr(Attribute::ReadOnly);
228 if (OnlyReadsMemory) addFnAttr(Attribute::ReadOnly);
229 else removeFnAttr(Attribute::ReadOnly | Attribute::ReadNone);
234 return hasFnAttr(Attribute::NoReturn);
237 if (DoesNotReturn) addFnAttr(Attribute::NoReturn);
238 else removeFnAttr(Attribute
[all...]
/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java84 public void addAttribute(Attribute attribute)
178 Attribute[] attributes,
179 Attribute attribute)
200 private Attribute[] addAttribute(int attributesCount,
201 Attribute[] attributes,
202 Attribute attribute)
208 Attribute[] newAttributes = new Attribute[attributesCount + 1];
227 Attribute[] attributes,
256 Attribute[] attribute
[all...]
H A DAttributeSorter.java68 public void visitAnyAttribute(Clazz clazz, Attribute attribute) {}
82 Attribute attribute1 = (Attribute)object1;
83 Attribute attribute2 = (Attribute)object2;
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
H A DX509Attribute.java9 import org.bouncycastle.asn1.x509.Attribute;
12 * Class for carrying the values in an X.509 Attribute.
17 Attribute attr;
25 this.attr = Attribute.getInstance(at);
29 * Create an X.509 Attribute with the type given by the passed in oid and
39 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
43 * Create an X.59 Attribute with the type given by the passed in oid and the
53 this.attr = new Attribute(new DERObjectIdentifier(oid), new DERSet(value));
/external/webkit/Source/WebKit/chromium/public/
H A DWebAttribute.h37 namespace WebCore { class Attribute; }
65 WebAttribute(const WTF::PassRefPtr<WebCore::Attribute>&);
69 WebPrivatePtr<WebCore::Attribute> m_private;
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationDefaultAttribute.java24 import proguard.classfile.attribute.Attribute;
29 * This Attribute represents an annotation default attribute.
33 public class AnnotationDefaultAttribute extends Attribute
67 // Implementations for Attribute.

Completed in 443 milliseconds

1234567891011>>